Is there any possability to create a database within mysql from java.
I'm only aware of the
String url="jdbc:mysql://localhost:3306/test";
Connection con = DriverManager.getConnection( url, "cb0", "xxx" );
syntax but here you have to specify a database name in the 'url'.
But how do I create a mysql database when I only have a login name and password, but no knowledge about the existing databases ?