黑马程序员技术交流社区
标题:
大婶们过来看看我连接MySql数据库的代码哪里有问题呢
[打印本页]
作者:
zrc203
时间:
2015-9-9 21:00
标题:
大婶们过来看看我连接MySql数据库的代码哪里有问题呢
package com.itheima.test;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.Statement;
public class DbTest {
String driver = "com.mysql.jdbc.Driver";
String url = "jdbc:mysql://127.0.0.1:3306/student";
String user = "root";
String password = ""; //这里报错
try{
Class.forName(driver);
Connection conn = DriverManager.getConnection(url, user, password);
if(!conn.isClosed())
System.out.println("Succeeded connecting to the Database!");
Statement statement = conn.createStatement();
}catch(Exception e){
e.printStackTrace();
}
}
}
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2