Jdbc检查类型兼容性

发布于 2024-11-30 15:18:32 字数 292 浏览 2 评论 0原文

有没有办法提前检查 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) and
if (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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

一口甜 2024-12-07 15:18:32

如果您使用 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.

臻嫒无言 2024-12-07 15:18:32

也许我不明白你的问题。你的意思是instanceof吗?

ie. if (myObject instanceof java.sql.Types) {
        ...
    }

Maybe I'm not understanding your question. Do you mean instanceof?

ie. if (myObject instanceof java.sql.Types) {
        ...
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文