如何使用setObject为PreparedStatement对象传入动态参数?

这篇博客介绍了在Java中使用PreparedStatement时,如何通过setObject方法传入动态参数,特别是处理datetime类型的值,建议使用对象表示参数,利用PreparedStatement的类型支持以避免类型转换错误。示例代码展示了如何创建更简洁、易维护的方法。
摘要由CSDN通过智能技术生成

   来自stackoverflow的答案,注意的是一般为sqlserver中datetime类型传入值的时候,对应的是java.sql.Timestamp类型,别把值传错了,当然以前用hibernate的时候,框架已经把这些类型差异都封装屏蔽好了,现在自己用jdbc写,好多坑坑。。。

http://stackoverflow.com/questions/10125270/prepare-statement-create-method-using-an-arraylist-of-parameters/10126048#10126048

You should use an object representation for your parameters, rather than an ArrayList<Object> of size 2. Also, you don't need your own DataType enumeration, there is already a java.sql.Typesclass. Best of all, there's a setObject() method on PreparedStatement that recognizes these types values, so you don't need a switch statement or calls to type-specific PreparedStatement.set..()methods.

Here's a solution that has an object representation for the parameters, takes advantage of java.sql.Types and preparedStatement.setObject() support for those types, and also insulates you from the type constant values.

First, the object representation for the parameters:

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值