gpt4 book ai didi

java - 如何使用 Firebird 的 jaybird JDBC 驱动程序将绑定(bind)值设置为 NULL?

转载 作者:行者123 更新时间:2023-11-30 07:23:17 24 4
gpt4 key购买 nike

当使用 Firebird 的 jaybird JDBC 驱动程序将 null 绑定(bind)到 PreparedStatement 时,我遇到了一些特殊情况。这是一个示例语句:

Class.forName("org.firebirdsql.jdbc.FBDriver");

// Observe the "local" in the connection string!
Connection con = DriverManager.getConnection(
"jdbc:firebirdsql:local:C:/data/firebird/test.db", "TEST", "TEST");

// With this connection, I'm not able to reproduce the issue:
Connection con1 = DriverManager.getConnection(
"jdbc:firebirdsql:localhost:C:/data/firebird/test.db", "TEST", "TEST");

PreparedStatement stmt = con.prepareStatement(
"SELECT cast(? as varchar(1)) FROM rdb$database");
stmt.setObject(1, null);
ResultSet rs = stmt.executeQuery();
rs.next();
System.out.println(rs.getString(1));
System.out.println(rs.wasNull());

上面程序的输出是

>
> false

第一行是一个空字符串。确实应该是

> null
> true

改变这一行...

stmt.setObject(1, null);

...进入任何这些行...

stmt.setString(1, null);
stmt.setNull(1, Types.VARCHAR);

...也无济于事。解决方法是在 SQL 语句中内联 null 文字,而不是将它们绑定(bind)到准备好的语句。我错过了什么?

详细信息:

  • 数据库:Firebird WI-V2.5.1.26351
  • JDBC 驱动程序:jaybird-2.2.0
  • Java版本:JDK 1.6.0_24
  • 操作系统:Windows 7 x64
  • JDBC 连接字符串:见上文。

最佳答案

我无法在 Windows 7 x64 上的 Jaybird 2.2.0Firebird 2.1.3(32 位) 上重现该问题.复制粘贴源代码并运行它会产生预期的输出。

附上截图以防万一:

enter image description here

更新

Windows XP 上的 Jaybird 2.2.0Firebird 2.5.1(32 位) 上测试,仍然无法重现问题 -> 完全正确与预期相同的输出。

关于java - 如何使用 Firebird 的 jaybird JDBC 驱动程序将绑定(bind)值设置为 NULL?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12106422/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com