prepareStatement 操作数据库

https://docs.qq.com/sheet/DTHNxSUt1aU9xUWtx
在这里插入图片描述

driver=com.mysql.cj.jdbc.Driver
url=jdbc:mysql://127.0.0.1:3307/yanyu
user=root
password=root
package com.yanyu;

import java.sql.*;
import java.util.ResourceBundle;

public class Demo03 {
    public static void main(String[] args) {
        ResourceBundle bundle = ResourceBundle.getBundle("com\\yanyu\\db");
        String driver = bundle.getString("driver");
        String url = bundle.getString("url");
        String user = bundle.getString("user");
        String password = bundle.getString("password");
        Connection con = null;
        PreparedStatement ps = null;
        //  可以防止SQL注入的
        ResultSet rs = null;
        try {
            Class.forName(driver);
            con = DriverManager.getConnection(url,user,password);
            con.setAutoCommit(false);
//            预编译的  SQL
            String sql = "insert into user(name,password) values(?,?)";
//                                                              1    2
//              预编译
            ps = con.prepareStatement(sql);
            //    没有具体的 数据  ,只有  ???
//   告诉系统   这两个   ?  是什么意思
            ps.setString(1,"烟雨");
            ps.setString(2,"123");
            boolean execute = ps.execute();

            System.out.println(!execute?"数据插入成功":"数据插入失败");
            con.commit();
        } catch (ClassNotFoundException | SQLException e) {
            if (con != null) {
                try {
                    con.rollback();
                } catch (SQLException throwables) {
                    throwables.printStackTrace();
                }
            }
            e.printStackTrace();
        }finally {
            if (rs != null) {
                try {
                    rs.close();
                } catch (SQLException throwables) {
                    throwables.printStackTrace();
                }
            }
            if (ps != null) {
                try {
                    ps.close();
                } catch (SQLException throwables) {
                    throwables.printStackTrace();
                }
            }
            if (con != null) {
                try {
                    con.close();
                } catch (SQLException throwables) {
                    throwables.printStackTrace();
                }
            }
        }


    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值