Jdbc检查类型兼容性
有没有办法提前检查 java 类型是否与 sql.Types 兼容?
我可以输入所有内容,例如:
if (BIGINT||TINYINT) try BigInteger.parse(myvalue)
和 if (TIME||DATE||TIMESTAMP) try new Date(Long.parse(myvalue))
这会创建大量代码。他们是某种通用的预检查方法吗?
编辑:我正在谈论插入,所以我想做一些预检查,以避免插入时出现 sql 异常
Is there some way to check beforehand if a java type is compatible with a sql.Types
?
I could type out all the stuff like:
if (BIGINT||TINYINT) try BigInteger.parse(myvalue)
andif (TIME||DATE||TIMESTAMP) try new Date(Long.parse(myvalue))
This creates tonnes of code. Is their some generic way of prechecking?
EDIT: I'm talking about inserts, so I want to do some prechecking, to avoid sql exceptions while inserting
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 JDBC,只需使用 ResultSet.getObject()。它将返回合适的类型(让 JDBC 驱动程序完成繁重的工作)。
仅使用类型化 getter,例如 getInt(),当您知道您期望从列中得到什么时。
If you're using JDBC, just use ResultSet.getObject(). It will return what type is appropriate (let the JDBC driver do the heavy lifting).
Only use the typed getters, eg getInt(), when you know what you're expecting from the column.
也许我不明白你的问题。你的意思是
instanceof
吗?Maybe I'm not understanding your question. Do you mean
instanceof
?