public class RunScript extends Tool
| 构造器和说明 |
|---|
RunScript() |
| 限定符和类型 | 方法和说明 |
|---|---|
static ResultSet |
execute(Connection conn,
Reader reader)
Executes the SQL commands read from the reader against a database.
|
static void |
execute(String url,
String user,
String password,
String fileName,
Charset charset,
boolean continueOnError)
Executes the SQL commands in a script file against a database.
|
static void |
main(String... args)
Options are case sensitive.
|
void |
runTool(String... args)
Executes the contents of a SQL script file against a database.
|
isOption, printNoDatabaseFilesFound, setOut, showUsage, showUsageAndThrowUnsupportedOption, throwUnsupportedOptionpublic static void main(String... args) throws SQLException
| [-help] or [-?] | Print the list of options |
| [-url "<url>"] | The database URL (jdbc:...) |
| [-user <user>] | The user name (default: sa) |
| [-password <pwd>] | The password |
| [-script <file>] | The script file to run (default: backup.sql) |
| [-driver <class>] | The JDBC driver class to use (not required in most cases) |
| [-showResults] | Show the statements and the results of queries |
| [-checkResults] | Check if the query results match the expected results |
| [-continueOnError] | Continue even if the script contains errors |
| [-options ...] | RUNSCRIPT options (embedded H2; -*Results not supported) |
args - the command line argumentsSQLException - on failurepublic void runTool(String... args) throws SQLException
java -Xrunhprof:cpu=samples,depth=16 ...To include local files when using remote databases, use the special syntax:
@INCLUDE fileNameThis syntax is only supported by this tool. Embedded RUNSCRIPT SQL statements will be executed by the database.
runTool 在类中 Toolargs - the command line argumentsSQLException - on failurepublic static ResultSet execute(Connection conn, Reader reader) throws SQLException
conn - the connection to a databasereader - the readerSQLException - on failurepublic static void execute(String url, String user, String password, String fileName, Charset charset, boolean continueOnError) throws SQLException
url - the database URLuser - the user namepassword - the passwordfileName - the script filecharset - the character set or null for UTF-8continueOnError - if execution should be continued if an error
occursSQLException - on failureCopyright © 2022. All rights reserved.