I am able to successfully connect to the database on my network using JDBC:
DriverManager.getConnection("jdbc:mysql://ip-address/dbname","uname","password");
How can I connect to and query the same database through the MySQL command line client.
|
I am able to successfully connect to the database on my network using JDBC:
How can I connect to and query the same database through the MySQL command line client. |
||||
| show 14 more comments |
mysql -h ipaddress -u root -pand login with the password , select the DB asuse db_name, start to query on DB. @Shalin – The Unlucky Jan 17 at 5:31