Can anyone explain me how to connect Java with MySQL?
|
or instantiating and configuring one from your database driver directly:
and then obtain connections from it, same as above:
|
|||||||
|
|
Here's a step by step explanation how to install MySQL and JDBC and how to use it:
That was it as far the connectivity concerns. You can find here a more advanced tutorial how to load and store fullworthy Java model objects in a database with help of a basic DAO class. |
|||||||||
|
|
Here's the very minimum you need to get data out of a MySQL database:
Add exception handling, configuration etc. to taste. |
|||
|
|
|
|||||
|
|
|
You can see all steps to connect MySQL database from JAVA application here. For other database, you just need to change the driver in first step only. Please make sure that you provide right path to database and correct username and password. Visit http://apekshit.com/t/51/Steps-to-connect-Database-using-JAVA |
|||
|
|
protected by Sean Owen May 23 '12 at 22:07
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.