I'm using the following command:
DBDirect-hdbc-mysql MyModule db_test localhost
It fails to connect. The program attempts to connect to database "test" which does not exist.
If I pass the name of the database:
DBDirect-hdbc-mysql MyModule db_test localhost db_test
the error message is:
Unnecessary arguments: ["localhost","db_test"]
How should I place the driver options? I want to connect to a database named db_test from localhost with username root and no password
|