step1:查找驱动程序
mysql目前提供的java驱动程序为connection/j,可以从mysql官方网站下载,并找到mysql-connector-java-3.0.15-ga-bin.jar文件,此驱动程序为纯java驱动程序,不需做其他配置。
step2:动态指定classpath
如果需要执行时动态指定classpath,就在执行时采用-cp方式。否则将上面的.jar文件加入到classpath环境变量中。
step3:加载驱动程序
try{
class.forname("com.mysql.jdbc.driver");
system.out.println("success loading mysql driver!");
}
catch(exception e)
{
system.out.println("error loading mysql driver!");
e.printstacktrace();
}
step4:设置连接的url
jdbc:mysql://localhost/databasename[?pa=va][&pa=va]