5 回答
TA贡献24条经验 获得超10个赞
1. 下载mysql-connector-java-5.1.18-bin.jar并加入到ClassPath下面,或加入到项目中。
2. 注册JDBC驱动程序
try {
Class.forName("com.mysql.jdbc.Driver");
}
catch(ClassNotFoundException e) {
System.out.println("找不到驱动程序");
}
3. 提供JDBC URL
jdbc:mysql://主机名:端口号/数据库名?user=***&password=***&useUnicode=true&characterEncoding=UTF8
端口号:MySQL的默认值是3306
useUnicode,characterEncoding:如果要存取中文,则必须使用,表明是否使用Unicode,并指定编码方式.
4. 从DriverManager取得Connection
可以直接将JDBC URL传入DriverManager.getConnection()得到Connection对象,如:
try {
String url = "jdbc:mysql://localhost:3306/GUESTBOOK?user=root&password=123456";
Connection conn = DriverManager.getConnection(url);
if(!conn.isClosed())
System.out.println("数据库连接成功!");
conn.close();
}
catch(SQLException e) {
....
}
也可以将userName和password传入DriverManager.getConnection()得到Connection对象,如:
String url = "jdbc:mysql://localhost:3306/AddressBook";
String user = "ZhuJun";
String password = "123456";
Connection conn = DriverManager.getConnection(url, user, password);
TA贡献5条经验 获得超1个赞
1、孩子,有没有引入JDBC包哦
2、PrearedStatement对象不是这么声明的 PreparedStatement ps = con.prepareStatement("sql");
你应该写入一个具体的sql语句 ,比如 PreparedStatement ps = con.prepareStatement("select * from test");
3、我记得try catch,,,,记得加上
TA贡献5条经验 获得超1个赞
Class.forName("com.mysql.jdbc.Driver");
Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/admin", "root", "root");
PreparedStatement ps = con.prepareStatement("sql");
TA贡献3593条经验 获得超0个赞
添加回答
举报