Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
seems like you are using java. What is your question? – Bhavik Shah Jan 17 at 5:25
@theunlucky Yes, MySQL 5.5 command line client. – Shalin Jan 17 at 5:27
I would like to query on a db across the network using the MySQL Command Line Client. – Shalin Jan 17 at 5:28
I guess that u are having the permission to access the DB server , mysql -h ipaddress -u root -p and login with the password , select the DB as use db_name, start to query on DB. @Shalin – The Unlucky Jan 17 at 5:31
@theunlucky I tried that, it gives me an error in syntax everytime. – Shalin Jan 17 at 5:38
show 14 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.