Subject Re: [Firebird-Java] Database Introspection with Jaybird
Author Roman Rokytskyy
Hi,

> I really needed to use this feature, so I downloaded the source code
> for version 2.1.2 and fixed the bug. It is found in line 5529 of
> main/org/firebirdsql/jdbc/AbstractDatabaseMetaData.java
>
> It should be
> return pattern;
>
> instead of
> return pattern.toUpperCase();
>
> as described in the bug report http://tracker.firebirdsql.org/browse/JDBC-106

That complete fix is a bit more complicated, but I think that this code
can fit your needs. The issue is that it is quite possible that people
will use lower-case notation for unqouted table names, in this case your
fix won't work. Just as a warning.

Roman