美文网首页程序员
使用JDBC链接数据库

使用JDBC链接数据库

作者: 宽哥好 | 来源:发表于2018-09-12 13:54 被阅读0次

    (包含7个步骤)

    1.加载jdbc加载程序

    在链接数据库之前,先加载链接数据库的驱动程序到JVM
    通过java.lang.Class类的静态方法forName(String className)实现
    例如:

    try{
    //加载MySql的驱动类
    Class.forName("com.mysql.jdbc.Driver") ;
    }catch(ClassNotFoundException e){
    System.out.println("找不到驱动程序类 ,加载驱动失败!");
    e.printStackTrace() ;
    }

    成功加载后,会将Driver类的实例注册到DriverManager类中。


    2.提供JDBC连接的URL

    •连接URL定义了连接数据库时的协议、子协议、数据源标识。
    •书写形式:协议:子协议:数据源标识
    协议:在JDBC中总是以jdbc开始
    子协议:是桥连接的驱动程序或是数据库管理系统名称。
    数据源标识:标记找到数据库来源的地址与连接端口。
    例如:(MySql的连接URL)

    jdbc:mysql://localhost:3306/test?useUnicode=true&characterEncoding=gbk ;

    useUnicode=true:表示使用Unicode字符集。如果characterEncoding设置为gb2312或GBK,本参数必须设置为true。characterEncoding=gbk:字符编码方式。


    3.创建数据库的连接

    •要连接数据库,需要向java.sql.DriverManager请求并获得Connection对象,该对象就代表一个数据库的连接。
    •使用DriverManager的getConnectin(String url , String username,String password )方法传入指定的欲连接的数据库的路径、数据库的用户名和
    密码来获得。
    例如:

    //连接MySql数据库,用户名和密码都是root
    String url = "jdbc:mysql://localhost:3306/test" ;
    String username = "root" ;
    String password = "root" ;
    try{
    Connection con =
    DriverManager.getConnection(url , username , password ) ;
    }catch(SQLException se){
    System.out.println("数据库连接失败!");
    se.printStackTrace() ;
    }


    4.创建一个Statement

    •要执行SQL语句,必须获得java.sql.Statement实例,Statement实例分为以下3种类型:
    1、执行静态SQL语句。通常通过Statement实例实现。
    2、执行动态SQL语句。通常通过PreparedStatement实例实现。
    3、执行数据库存储过程。通常通过CallableStatement实例实现。
    具体的实现方式:

    Statement stmt = con.createStatement() ;
    PreparedStatement pstmt = con.prepareStatement(sql) ;
    CallableStatement cstmt = con.prepareCall("{CALL demoSp(? , ?)}") ;


    5.执行SQL语句

    Statement接口提供了三种执行SQL语句的方法:executeQuery、executeUpdate和execute
    1、ResultSet executeQuery(String sqlString):执行查询数据库的SQL语句,返回一个结果集(ResultSet)对象。
    2、int executeUpdate(String sqlString):用于执行INSERT、UPDATE或DELETE语句以及SQL DDL语句,如:CREATE TABLE和DROP TABLE等
    3、execute(sqlString):用于执行返回多个结果集、多个更新计数或二者组合的语句。
    具体实现的代码:

    ResultSet rs = stmt.executeQuery("SELECT * FROM ...") ;
    int rows = stmt.executeUpdate("INSERT INTO ...") ;
    boolean flag = stmt.execute(String sql) ;


    6.处理结果

    两种情况:
    1、执行更新返回的是本次操作影响到的记录数。
    2、执行查询返回的结果是一个ResultSet对象。
    • ResultSet包含符合SQL语句中条件的所有行,并且它通过一套get方法提供对这些行中数据的访问。
    • 使用结果集(ResultSet)对象的访问方法获取数据:

    while(rs.next()){
    String name = rs.getString("name") ;
    String pass = rs.getString(1) ; // 此方法比较高效
    }

    (列是从左到右编号的,并且从列1开始)


    7.关闭JDBC对象

    操作完成以后要把所有使用的JDBC对象全都关闭,以释放JDBC资源,关闭顺序和声明顺序相反:
    1、关闭记录集
    2、关闭声明
    3、关闭连接对象

    if(rs != null){ // 关闭记录集
    try{
    rs.close() ;
    }catch(SQLException e){
    e.printStackTrace() ;
    }
    }
    if(stmt != null){ // 关闭声明
    try{
    stmt.close() ;
    }catch(SQLException e){
    e.printStackTrace() ;
    }
    }
    if(conn != null){ // 关闭连接对象
    try{
    conn.close() ;
    }catch(SQLException e){
    e.printStackTrace() ;
    }
    }


    参考:[http://www.cnblogs.com/hongten/archive/2011/03/29/1998311.html]


    demo:

    /**
     * 测试链接到MySql数据库
     */
    public static void connectionToMysql() {
        int i=1;
        try {
            //第一步、加载驱动
            Class.forName(dirver);
            //第二步、提供jdbc链接的URL
            //第三步、创建数据库的链接
            Connection con = DriverManager.getConnection(url, user, pass);
            //第三步、创建一个Statement对象
            java.sql.Statement statement = con.createStatement();
            //第五步、执行sql语句
            ResultSet result = statement.executeQuery("SELECT * FROM system_application");
            //第六步、处理结果
            while(result.next()) {
                String colume1 = result.getString(1);
                String colume2 = result.getString(2);
                String colume3 = result.getString(3);
                String colume4 = result.getString(4);
                String colume5 = result.getString(5);
                String colume7 = result.getString(7);
                
                System.out.println((i++)+"  第一列:"+colume1+" ****第二列:"+colume2+" ****第三列:"+colume3+" ****第四列:"+colume4+" ****第五列:"+colume5+" ****第六列:"+colume7);
    
            }
            
            //第七步、关闭JDBC对象()
            if(result != null) {    //关闭记录集
                result.close();
                System.out.println("关闭记录集成功!");
            }
            if(statement != null) { //关闭声明
                statement.close();
                System.out.println("关闭声明成功!");
            }
            if(con != null) {   //关闭链接对象
                con.close();
                System.out.println("关闭链接对象成功!");
            }
            
            
            
        } catch (ClassNotFoundException e) {
            System.err.println("找不到驱动程序类 加载驱动失败!");
            e.printStackTrace();
        }catch (SQLException e) {
            System.err.println("链接数据库失败!");
            e.printStackTrace();
        }
    

    相关文章

      网友评论

        本文标题:使用JDBC链接数据库

        本文链接:https://www.haomeiwen.com/subject/gxevgftx.html