PreparedStatement对象

PreparedStatement对象

比Statement对象更常用,而且可以防止SQL注入问题

区别

1. 创建方式

  • 创建statement对象
Statement statement = connection.createStatement();
  • 创建Preparedment对象
PreparedStatement preparedStatement = connection.prepareStatement(sql); //创建的时候就要加上sql语句

Preparedment需先写sql语句,再定义对象。
 

2. 执行sql语句方式

  • statement执行语句
 String sql = "UPDATE `users` SET `name` = 'tom' WHERE `name` = 'lisi'";  //定义sql语句
 statement.executeUpdate(sql);  //执行
  • Preparedment执行语句
String sql ="UPDATE `users` SET `name` = ? WHERE `name` = ?";  //定义sql语句,?为占位符
 preparedStatement = connection.prepareStatement(sql);
 preparedStatement.setString(1,"wangwu");  //1--第一个占位符的位置,该位置是String变量,故用setString函数
 preparedStatement.setString(2,"Larry");
 preparedStatement.executeUpdate();   //执行

PreparedStatement完整使用

这个是直接throw异常,也可以用try catch,最后要记得写finally{关闭连接}

public class TestUpdate {
    public static void main(String[] args) throws SQLException {
        Connection connection = null;
        PreparedStatement pdst = null;
        connection = JdbcUtils.getConnection();
        String sql ="UPDATE `users` SET `name` = ? WHERE `name` = ?";
         pdst = connection.prepareStatement(sql);
         pdst.setString(1,"wangwu");
         pdst.setString(2,"Larry");

        int i = pdst.executeUpdate();
        if (i>0){
            System.out.println("修改成功");
        }

        JdbcUtils.closeConnection(connection,pdst,null);

    }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值