ScriptCreates a SQL script file by extracting the schema and data of a database.
static void execute(String url, String user, String password, String fileName) throws SQLExceptionBacks up a database to a SQL script file.Parameters:
url - the database URL
user - the user name
password - the password
fileName - the script file
static void main(String[] args) throws SQLExceptionThe command line interface for this tool. The options must be split into strings like this: "-user", "sa",... Options are case sensitive. The following options are supported:
Parameters:
args - the command line arguments
Throws:
SQLException
void run(String[] args) throws SQLException |