Finding exact column type via java.sql.ResultSetMetaData

From: Thor Michael Støre <thormichael(at)gmail(dot)com>
To: "pgsql-jdbc(at)postgresql(dot)org" <pgsql-jdbc(at)postgresql(dot)org>
Subject: Finding exact column type via java.sql.ResultSetMetaData
Date: 2013-02-14 16:43:53
Message-ID: 3A2E457A-47D7-44B8-9D2F-5865D24C32DC@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

Hello,

I'm scratching my head over ResultSetMetaData yet again, this time related to figuring out the correct type of a column.

Am I right in understanding that given a SQL command whose resultset contains a field of a user defined type not originating from a table, you cannot look up the exact type for that field via the result set meta data if multiple types of the same name are defined in different schemas? AFAICT ResultSetMetaData only gives the name the type is defined with in the database, via getColumnTypeName, but not the schema of that type. Should the result for getColumnTypeName have been prefixed with schema-plus-dot, or is that not possible or not according to the spec? Unless I'm missing something the code I'm writing will basically have to throw an exception and apologize that different types with the same name in different schemas is not supported when it runs into that.

I'm testing with:

CREATE SCHEMA test_schema;
CREATE SCHEMA another_test_schema;

CREATE TYPE test_schema.test_type AS ( intfield int, textfield varchar );
CREATE TYPE another_test_schema.test_type AS ( other_textfield varchar, other_intfield int );

And given the query:
SELECT (1,'adsf')::test_schema.test_type, ('zxcv',2)::another_test_schema.test_type;

Then java.sql.ResultSetMetaData gives the exact same information for each column, with getColumnTypeName giving "test_type" for both. Simple test-case with this and a bit of runnable Java included.

Thanks,
Thor Michael Støre

Attachment Content-Type Size
Testcase.java application/octet-stream 2.6 KB
unknown_filename text/plain 2 bytes

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Dave Cramer 2013-02-14 17:00:15 Re: Finding exact column type via java.sql.ResultSetMetaData
Previous Message Bryan Varner 2013-02-14 16:29:06 Re: PostgreSQL XAResource & GlassFish 3.1.2.2