JDBC连接MySQL数据库
发表于:2007-07-04来源:作者:点击数:
标签:
Step1:查找驱动程序 MySQL目前提供的 java 驱动程序为Connection/J,可以从MySQL官方网站下载,并找到 mysql -connector-java-3.0.15-ga-bin.jar文件,此驱动程序为纯java驱动程序,不需做其他配置。 Step2:动态指定classpath 如果需要执行时动态指定classp
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("Su
clearcase/" target="_blank" >ccess 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]
原文转自:http://www.ltesting.net