PL/SQL 数据类型 BINARY_INTEGER 如何具体化为 Java 类型?

发布于 2024-08-12 05:01:17 字数 53 浏览 5 评论 0原文

java 中与 PL/SQL 数据类型 BINARY_INTEGER 等效的数据类型是什么?

What would be the datatype in java equivalent to the PL/SQL datatype BINARY_INTEGER?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

当爱已成负担 2024-08-19 05:01:17

根据Oracle 文档,我们可以将其映射到 oracle.sql.NUMBER 或简单的 int 原语。

According to the Oracle documentation, we can map it to either oracle.sql.NUMBER or a straightforward int primitive.

分开我的手 2024-08-19 05:01:17

BINARY_INTEGER 是 INTEGER 的子类型,范围为 - 2^312^31,与 java 中的 int 类型大小相同,因此您可以使用 int

PL/SQL 中与 BINARY_INTEGER 等效的另一个类型是 PLS_INTEGER 并且这个在大多数操作中速度更快)。

BINARY_INTEGER is a subtype of INTEGER and ranges from -2^31 to 2^31, same size as the int type in java, so you could use int.

(Another equivalent type in PL/SQL to BINARY_INTEGER is PLS_INTEGER and this one is faster in most operations).

司马昭之心 2024-08-19 05:01:17

如果您懒于阅读文档,那么您还可以使用 ResultSet#getObject() 来查看 JDBC 驱动程序返回的默认类型,然后使用它。

System.out.println(resultSet.getObject("columnname").getClass()); 

If you're lazy in reading the documentation, then you could also play a bit with ResultSet#getObject() to see what default type the JDBC driver returns and then use it.

System.out.println(resultSet.getObject("columnname").getClass()); 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文