|
What is the driver & url for connecting for a mySQL? |
|
|
|
|
Written by Sleepy Egg
|
|
Thursday, 23 June 2005 |
|
Driver Class: com.mysql.jdbc.Driver or org.gjt.mm.mysql.Driver
Connection String:
jdbc:mysql://localhost/<DATABASE_NAME>?user=<USER_NAME>&password=<PASSWORD HERE>
Url for MySql 4.1 or later : jdbc:mysql://localhost/<DATABASE_NAME>?useServerPrepStmts=false
MySql 4.1.x or later should read this: http://dev.mysql.com/doc/connector/j/en/cj-jdbc-upgrading-issues.html
|