本文共 1097 字,大约阅读时间需要 3 分钟。
java中利用JDBC连接MySQL方法总结
2008年3月15日
1、配置MySQL驱动包
MySQL驱动包下载地址
http://dev.mysql.com/downloads/connector/j/5.1.html
(要注意版本号,MySQL版本为5.0的要下5.0的哦!)
(1)在cmd下调试JDBC连接MySQL要在环境变量中设置
CLASSPATH=D:/Java/mysqlconnertor/mysql-connector-java-5.0.8-bin.jar;
(2)在eclipse中调试JDBC连接MySQL数据库就需要在本文件夹中
构建路径->构建配置路径->添加外部JAR->导入MySQL驱动包
(mysql-connector-java-5.0.1-bin.jar)
2、具体代码以及在MySQL中的操作
(1)在MySQL中建立一个,库名:database ,表名:mytable
存在两个字段 即 id和name
(2)具体的实现代码:
import java.sql.*;
public class JdbcTest
{
public static void main(String[] args)
{
try
{
Connection conn;
Statement stmt;
ResultSet res;
//加载Connector/J驱动
//这一句也可写为:Class.forName("com.mysql.jdbc.Driver");
Class.forName("com.mysql.jdbc.Driver").newInstance();
//建立到MySQL的连接
conn = DriverManager.getConnection("jdbc:mysql://127.0.0.1/database","root", "111");
//root为MySQL的用户名,111为密码
stmt = conn.createStatement(); //执行SQL语句
res = stmt.executeQuery("select * from mytable");
//处理结果集
while (res.next())
{
String name = res.getString("name");
System.out.println(name);
}
res.close();
}
catch (Exception ex)
{
System.out.println("Error : " + ex.toString());
}
}
}
转载地址:http://sfevo.baihongyu.com/