Re: Get a table name

From: Filip Rembiałkowski <filip(dot)rembialkowski(at)gmail(dot)com>
To: Gianvito Pio <pio(dot)gianvito(at)gmail(dot)com>, pgsql-jdbc(at)postgresql(dot)org
Subject: Re: Get a table name
Date: 2009-12-27 12:59:35
Message-ID: 92869e660912270459h55fd3024k97d8c5ee1d4cfd60@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-jdbc

In general, no. That's because resultset columns can be "entangled" in
more complex way than "column a of table b".

2009/12/27, Gianvito Pio <pio(dot)gianvito(at)gmail(dot)com>:
> Hi all,
> I'm trying to get the table name of a column in this way:
>
> ResultSet rs;
> try
> {
> rs = ps.executeQuery();
> ResultSetMetaData rsmd = rs.getMetaData();
> System.out.println(rsmd.getTableName(..));
>
> but the getTableName( ..) method gives me an empty string. Isn't there a
> way to know the table name of a specific field I'm obtaining? Thanks
>
> --
> Sent via pgsql-jdbc mailing list (pgsql-jdbc(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-jdbc
>

--
Wysłane z mojego urządzenia przenośnego

Filip Rembiałkowski
JID,mailto:filip(dot)rembialkowski(at)gmail(dot)com
http://filip.rembialkowski.net/

In response to

Responses

Browse pgsql-jdbc by date

  From Date Subject
Next Message Maciek Sakrejda 2009-12-27 22:12:30 Re: Get a table name
Previous Message Gianvito Pio 2009-12-27 10:32:58 Get a table name