Subject RC2 Jaybird JDBC bug
Author mountaintrailblazing <mountaintrailblazi
Hello,

In version RC2 of Jaybird (released Dec. 2002), there is a small JDBC
bug when reading from a view. If that view contains a '' mapping,
various errors occur upon select, most commonly "out of memory."

For example, a view defined as:

CREATE VIEW "TEST" ("SEASON_NO", "EMPTY_CHAR")
AS
SELECT SEASON_NO, '' FROM SPREADSHEET_TEST;

Will cause the aforementioned problems. As soon as the '' is
removed, it works fine.

Tom