您的位置:首页 > 数据库

J2SE基础夯实系列之JDBC,链接数据库实例代码

2012-08-14 15:46 585 查看




标准示例
importjava.sql.*;

publicclass TestMySQLConn {

/**

* @param args

*/

publicstatic void main(String[] args) {

Connectionconn = null;

Statementstmt = null;

ResultSetrs = null;

try{

Class.forName("com.mysql.jdbc.Driver");

conn= DriverManager.getConnection("jdbc:mysql://localhost/mydata?"

+"user=root&password=root");

stmt= conn.createStatement();

rs= stmt.executeQuery("select * from dept");

while(rs.next()) {

System.out.println(rs.getString("deptno"));

}

}catch (SQLException ex) {

System.out.println("SQLException:" + ex.getMessage());

System.out.println("SQLState:" + ex.getSQLState());

System.out.println("VendorError:" + ex.getErrorCode());

}catch (Exception ex) {

ex.printStackTrace();

}finally {

try{

if(rs != null) {

rs.close();

rs= null;

}

if(stmt != null) {

stmt.close();

stmt= null;

}

if(conn != null) {

conn.close();

conn= null;

}

}catch (SQLException e) {

e.printStackTrace();

}

}

}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐