Subject | Re: [Firebird-Java] Database Introspection with Jaybird |
---|---|
Author | Roman Rokytskyy |
Post date | 2008-02-07T12:39:07Z |
Hi,
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
> I really needed to use this feature, so I downloaded the source codeThat complete fix is a bit more complicated, but I think that this 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
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