How can I connect to MySQL db and execute queries ?
feedback
|
migrated from superuser.com Jan 26 '10 at 19:18
This question came from our site for computer enthusiasts and power users.
|
...if you really are going to use java to query a MySql server you should look further and read some about JDBC, ORM, transactions and how this concepts will help you using a database. You can use JDBC to query an Mysql database, and virtually any other DBMS who have an JDBC driver implemented. An ORM system provides the programmer with a layer between Objects and Database and makes all the hard work for you (in theory). Even with the previous point you really need to have some basic knowledge about transactions, that encapsulates your actions in one atomic unit that only executes completely or does not execute at all. | |||||||
feedback
|
|
First get your JDBC driver, such as mysql's Connector/J - add the jar to your project. Then, you can access a database like: public class mysqlTest {
} | |||
|
feedback
|
|
http://dev.mysql.com/usingmysql/java/ This should probably be migrated to stackoverflow. | |||
|
feedback
|
|
| |||
|
feedback
|