准备语句 setNull(..)
JavaPreparedStatement 提供了显式设置 Null 值的可能性。这种可能性是:
prepStmt.setNull(parameterIndex, Types.VARCHAR);
此调用的语义与使用带有 null 参数的特定 setType 时的语义相同吗?
prepStmt.setString(null);
?
Java PreparedStatement provides a possibility to explicitely set a Null value. This possibility is:
prepStmt.setNull(parameterIndex, Types.VARCHAR);
Are the semantics of this call the same as when using a specific setType with a null parameter?
prepStmt.setString(null);
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
这个指南说:
所以是的,它们是等价的。
This guide says:
So yes they're equivalent.
但请注意这一点...-
抛出空指针异常-
因为原型不是
一个
很好的模型来抓住你。
but watch out for this....
-thows null pointer exception-
because the protype is
NOT
nice one to catch you out eh.
最后我做了一个小测试,在编程时我突然想到,如果没有 setNull(..) 方法,就无法为 Java 原语设置 null 值。对于对象来说,两种方式
和
行为方式都是相同的。
Finally I did a small test and while I was programming it it came to my mind, that without the setNull(..) method there would be no way to set null values for the Java primitives. For Objects both ways
and
behave the same way.
这应该适用于任何类型。
尽管在某些情况下故障发生在服务器端,例如:
对于 SQL:
Oracle 18XE 失败,类型错误:预期的日期,得到的字符串——这是一个完全有效的失败;
底线:如果您调用
.setNull()
,最好知道类型。that should work for any type.
Though in some cases failure happens on the server-side, like:
for SQL:
Oracle 18XE fails with the wrong type: expected DATE, got STRING -- that is a perfectly valid failure;
Bottom line: it is good to know the type if you call
.setNull()
.您还可以考虑使用preparedStatement.setObject(index,value,type);
You could also consider using
preparedStatement.setObject(index,value,type);