Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm running into a bit of a situation in corner cases when binding null to a PreparedStatement with Firebird's jaybird JDBC driver. Here's a sample statement:

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());

The output of the above program is

>
> false

The first line being an empty string. It really should be

> null
> true

Changing this line ...

stmt.setObject(1, null);

... into any of these lines ...

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

... doesn't help either. A workaround is to inline null literals in SQL statements, instead of binding them to the prepared statement. What am I missing?

Details:

  • Database: Firebird WI-V2.5.1.26351
  • JDBC driver: jaybird-2.2.0
  • Java version: JDK 1.6.0_24
  • OS: Windows 7 x64
  • JDBC Connection String: See above.
share|improve this question
As the answer below (and my own attempt at reproducing) show that Jaybird works as expected, it might be good to include additional information: full Firebird version, Java version, OS platform and the JDBC connection string used (or if you are using a DataSource: its full set of properties). If you have a working reproduction program and database you can also file a ticket at tracker.firebirdsql.org and I will take a look – Mark Rotteveel Aug 25 '12 at 7:10
@MarkRotteveel: Thanks for your hints. How do I get the "full Firebird version"? I don't know how to use the Service API, whereas rdb$get_context('SYSTEM', 'ENGINE_VERSION') returns 2.5.1. The rest of the information has been added to the question – Lukas Eder Aug 25 '12 at 8:55
DatabaseMetaData.getDatabaseProductVersion() should return the full version – Mark Rotteveel Aug 25 '12 at 8:56
OK, but I'm able to narrow it down to my usage of the connection string. I'll update the question accordingly – Lukas Eder Aug 25 '12 at 8:59
Looks like a bug in the native part. Is there a specific reason you need the Type 2 (native) driver? – Mark Rotteveel Aug 25 '12 at 9:01
show 3 more comments

2 Answers

I can't reproduce the issue on Jaybird 2.2.0 and Firebird 2.1.3 (32-bit) on Windows 7 x64. Copy pasting the source code and running it produces exactly the expected output.

Screenshot attached just in case:

enter image description here

UPDATE

Tested on Jaybird 2.2.0 & Firebird 2.5.1 (32bit) on Windows XP, still cannot reproduce the issue -> Exact same output as expected.

share|improve this answer
Tested on jaybird 2.2.0 & firebird 2.5.1 (32bit) on Windows XP, still cannot reproduce the issue -> Exact same output as expected. – tschan Aug 24 '12 at 17:13
Thanks for your help. Apparently, this is a bug in the JDBC driver: tracker.firebirdsql.org/browse/JDBC-271 – Lukas Eder Aug 25 '12 at 9:04
up vote 1 down vote accepted

Apparently, this is a bug in the JDBC driver:

http://tracker.firebirdsql.org/browse/JDBC-271

It only appears when using this sort of connection URL:

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

Not with this sort:

// 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");
share|improve this answer
1  
It also occurs with jdbc:firebirdsql:native://localhost/D:/data/DB/testdatabase.fdb – Mark Rotteveel Aug 25 '12 at 9:08
It looks like it is only a problem when the parameter is part of the select column list, it correctly works as null when it is part of the where-condition or an insert-statement etc – Mark Rotteveel Aug 25 '12 at 10:05
1  
@MarkRotteveel: My integration tests indicate something else. The problem really seems to be related to the CAST(? as xxx) operation. If CAST is used in INSERT or UPDATE statements, similar problems appear with any data type. I have also commented this on JDBC-271 – Lukas Eder Aug 25 '12 at 10:13
Bug will be fixed in Jaybird 2.2.1 and 2.3 – Mark Rotteveel Sep 2 '12 at 14:29

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.