大家好,又见面了,我是你们的朋友全栈君。如果您正在找激活码,请点击查看最新教程,关注关注公众号 “全栈程序员社区” 获取激活教程,可能之前旧版本教程已经失效.最新Idea2022.1教程亲测有效,一键激活。
Jetbrains全系列IDE使用 1年只要46元 售后保障 童叟无欺
将executeUpdate(sql)或executeQuery(sql)括号中的sql删除。
问题代码:
public static void main(String[] args) throws Exception{
Connection connection = null;
Statement statement = null;
connection = DBHelper.getConnection();
String sql = "update emp set deptno= ? where ename=? ";
PreparedStatement preparedStatement = connection.prepareStatement(sql);
preparedStatement.setInt(1,10);
preparedStatement.setString(2,"test");
int i = preparedStatement.executeUpdate(sql); // 增删改
if (i>0){
System.out.println("success");
}else {
System.out.println("failure");
}
DBHelper.close(statement,connection);
}
报错信息:
Exception in thread “main” java.sql.SQLException: ORA-01008: 并非所有变量都已绑定
解决:
首先了解:PrepareStatement接口(面向接口编程),prepareStatement对象会预编译sql语句,这样可以防止多次执行sql语句带来的性能大开销。
我们使用占位符 ? 对sql语句进行简化,但与此同时我们需要调用prepareStatement对象的setXxx()方法去设置占位符所相对应的信息。
String sql = "update emp set deptno= ? where ename=? ";
PreparedStatement preparedStatement = connection.prepareStatement(sql);
preparedStatement.setInt(1,10);
preparedStatement.setString(2,"test");
最后,我们通过prepareStatement调用excuteUpdate()或excuteQuery()方法分别进行返回增删改的行数或返回查询的Result结果集。
注意:这里不需要将sql传入excuteUpdate()或excuteQuery()小括号中。这里也是问题所在。
原因:很简单,你直接把String sql = “update emp set deptno= ? where ename=? “;传给增删改查方法,?它无法识别。
发布者:全栈程序员-用户IM,转载请注明出处:https://javaforall.cn/196364.html原文链接:https://javaforall.cn
【正版授权,激活自己账号】: Jetbrains全家桶Ide使用,1年售后保障,每天仅需1毛
【官方授权 正版激活】: 官方授权 正版激活 支持Jetbrains家族下所有IDE 使用个人JB账号...