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

I'm trying to connect to a server program i'm writing which I want it to connect to a MySQL DB and extract or insert information. I'm having a lot of trouble with the understanding of this architecture. I already have a Client/Server app that runs on java. How can I connect to a MySQL db? and furthermore, can I install on the same computer the MySQL DB? and how to do so? I've already downloaded MySQL from their site, and followed their guides, but still no connection. do I need to install MySQL on a different computer? and last question - is there a connection ti JDBC? how to use it?

thanks!

share|improve this question
Can you show us some demonstration of the work you've done. A code snippet. An exception? – Gray Nov 18 '11 at 21:13

closed as not a real question by BalusC, Jim Garrison, Shoban, Clive, martin clayton Nov 19 '11 at 11:48

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

Here is a JDBC tutorial from Oracle to guide you on this.

http://download.oracle.com/javase/tutorial/jdbc/

In your application you have to download the driver to connect to the database from mysql and attach it to your application.

http://dev.mysql.com/doc/refman/5.1/en/connector-j.html

share|improve this answer

MySQL usually grants access depending on the hostname the client is trying to use. Read following webpage to know how to add users to MySQL:

http://dev.mysql.com/doc/refman/5.6/en/adding-users.html

Also note that MySQL should be enabled to accept network connections:

http://www.cyberciti.biz/tips/how-do-i-enable-remote-access-to-mysql-database-server.html

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.