Re: BUG: DatabaseMetaData.getColumns isn't case insensitive - Mailing list pgsql-jdbc

From Dave Cramer
Subject Re: BUG: DatabaseMetaData.getColumns isn't case insensitive
Date
Msg-id 491f66a50902021332w66598e8fhe6a2ed5b3a3ad8d1@mail.gmail.com
Whole thread Raw
In response to BUG: DatabaseMetaData.getColumns isn't case insensitive  (maly.velky@email.cz)
List pgsql-jdbc
Shouldn't you quote the column in question if you want to get a MixedCase quoted column ?

Dave

On Mon, Feb 2, 2009 at 8:39 AM, <maly.velky@email.cz> wrote:
Hello,

I'was trying to get meta data of a column and discovered that the column name is case sensitive though it should be case insensitive. I don't know if this can be somehow determined by a configuration or environment change because I believe that till recently it  worked in a case-insensitive manner.

I've the table studna_monitor.mon_user_session with the column "username". The following code wrongly returns null (notice "username".toUpperCase()):
---
String col = null;
Class.forName("org.postgresql.Driver");
String url = "jdbc:postgresql://localhost/mydb?user=me&password=secret";
Connection conn = DriverManager.getConnection(url);
       DatabaseMetaData databaseMetaData = conn.getMetaData();
       ResultSet columnsMD = databaseMetaData.getColumns(null, "studna_monitor", "mon_user_session", "username".toUpperCase());
       while(columnsMD.next()) {
               col = columnsMD.getString("COLUMN_NAME");
       }
       return col;
---
While the following returns the column name "username":
---
...
ResultSet columnsMD = databaseMetaData.getColumns(null, "studna_monitor", "mon_user_session", "username".toLowerCase());
...
---

BTW, the metadata reports:
supportsMixedCaseIdentifiers: false
supportsMixedCaseQuotedIdentifiers: true
(which is pretty much expected)

Driver: postgresql-8.3-604.jdbc3.jar, postgresql-jdbc3-8.2.jar (as distributed with Ubuntu, doesn't provide build number)
Server:  Postgres 8.2.6 for Solaris


Thank you.
Jakub Holy
maly.velky@email.cz

--
Sent via pgsql-jdbc mailing list (pgsql-jdbc@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-jdbc

pgsql-jdbc by date:

Previous
From: maly.velky@email.cz
Date:
Subject: BUG: DatabaseMetaData.getColumns isn't case insensitive
Next
From: David Sun
Date:
Subject: documentation error