码迷,mamicode.com
首页 > 数据库 > 详细

java连接数据库

时间:2017-12-13 14:31:48      阅读:174      评论:0      收藏:0      [点我收藏+]

标签:jdbc   exception   style   span   int   throws   nec   数据库连接   bsp   

public class DbUtil{
      public Connection getConn() throws Exception{
      Class.forName("com.mysql.jbdc.Driver");
      Connection conn=DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/emp_dept", "root", "111111");
      return conn;
}
    public void closeConn(Connection conn) throws Exception {
        if(conn!=null){
            conn.close();
        }
    }
    public static void main(String[] args) throws Exception {
        DbUtil dbUtil=new DbUtil();
        Connection conn=dbUtil.getConn();
        if(conn!=null){
            System.out.println("数据库连接成功");
        }else{
            System.out.println("数据库连接失败");
        }
        dbUtil.closeConn(conn);
    }

 


 

java连接数据库

标签:jdbc   exception   style   span   int   throws   nec   数据库连接   bsp   

原文地址:http://www.cnblogs.com/wangyufei123/p/8032136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!