Is there a standard way to connect a Java program to a MySQL database, and which is the easiest one?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
In addition to answer posted above, JPA (Hibernate) is even easier one once you cross the initial barrier called learning curve (and before you are hit by next one called, Performance Optimization). On the serious note, Yes JPA is also a standard way to connect and query pretty much any database the same way. |
||||
|
|
|
JDBC is the standard way. Below is the sample java code to connect MySQL database:
|
|||
|
|