Subject | Re: [Firebird-Java] Dialect 3 and FBDatabaseMetaData#getIndexInfo |
---|---|
Author | Roman Rokytskyy |
Post date | 2006-01-31T18:31:40Z |
> Hi!|> public ResultSet getIndexInfo(String catalog, String schema, String
> I've found a bug in FBDatabaseMetaData with the method getIndexInfo.
>
|> table, boolean unique, boolean approximate) throws SQLException {
|> checkCatalogAndSchema(catalog, schema); String sql =
|> GET_INDEX_INFO; ArrayList params = new ArrayList();
|> params.add(table.toUpperCase());
|>
|> ResultSet rs = doQuery(sql, params);
>Yup, you're right. Please fill a bug report in SourceForge.net area, so we
> The call table.toUpperCase() prevents index info for mixed case table
> identifiers with dialect 3 databases.
don't forget about the issue.
Roman