JDBC链接

December 09, 2023
测试
测试
测试
测试
3 分钟阅读

JDBC访问数据常用类和接口

DriverManager :管理JDBC驱动

Connection :连接数据库并传送数据

Statement :负责执行SQL语句

ResultSet:负责保存Statement执行后所产生的查询结果

JDBC访问数据库的步骤

加载JDBC驱动

与数据库建立连接

创建Statement或PreparedStatement对象

发送SQL语句,并得到返回结果

处理返回结果

释放资源

注意事项

遍历结果集中数据可使用列号或列名标识列

PreparedStatement比Statement提高了代码的安全性、可读性和可维护性

Statement常用方法:

ResultSet常用方法:

@Test
public void testxiugaiMaster() throws Exception{
    Connection conn=null;
    Statement stmr = null;
    String name1="王五";
    String password = "12345";
    int money =100;
    int count = 0;
    int id=1;
    try {
        //1.加载驱动
        Class.forName("com.mysql.jdbc.Driver");
    } catch (ClassNotFoundException e) {
        e.printStackTrace();
    }
    //2.创建连接
    try {
        conn= DriverManager.getConnection("jdbc:mysql://localhost:3306/ebet","root","123");
        System.out.println("打开数据连接");
        String sql = "update master set name= '"+name1+"'"+",password='"+password+"'where id='"+id+"'";
        stmr = conn.createStatement();
        count=stmr.executeUpdate(sql);
        if(count>0){
            System.out.println("添加成功");
        }
    } catch (SQLException e) {
        e.printStackTrace();
    }finally {
        if(conn!=null){
            try {
                conn.close();
                System.out.println("关闭数据连接");
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
        if (stmr!=null){
            try {
                stmr.close();
            } catch (SQLException e) {
                e.printStackTrace();
            }
        }
    }
}

继续阅读

更多来自我们博客的帖子

如何安装 BuddyPress
由 测试 December 17, 2023
经过差不多一年的开发,BuddyPress 这个基于 WordPress Mu 的 SNS 插件正式版终于发布了。BuddyPress...
阅读更多
Filter如何工作
由 测试 December 17, 2023
在 web.xml...
阅读更多
如何理解CGAffineTransform
由 测试 December 17, 2023
CGAffineTransform A structure for holding an affine transformation matrix. ...
阅读更多