Re: metadata searching - Mailing list pgsql-jdbc

From Oliver Jowett
Subject Re: metadata searching
Date
Msg-id 4020CD8B.9090307@opencloud.com
Whole thread Raw
In response to Re: metadata searching  (Oliver Jowett <oliver@opencloud.com>)
List pgsql-jdbc
Oliver Jowett wrote:

> $ psql testdb
> Welcome to psql 7.4.1, the PostgreSQL interactive terminal.
> [...]
> testdb=> create table "test" (k int4);
> CREATE TABLE
> testdb=> create table "Test" (q int4);
> CREATE TABLE
> testdb=> \d "test"
>      Table "public.test"
>  Column |  Type   | Modifiers
> --------+---------+-----------
>  k      | integer |
>
> testdb=> \d "Test"
>      Table "public.Test"
>  Column |  Type   | Modifiers
> --------+---------+-----------
>  q      | integer |

Eh, and of course the case actually relevant to your original example..

testdb=> \d test
      Table "public.test"
  Column |  Type   | Modifiers
--------+---------+-----------
  k      | integer |

testdb=> drop table test;
DROP TABLE
testdb=> \d test
Did not find any relation named "test".
testdb=> \d "Test"
      Table "public.Test"
  Column |  Type   | Modifiers
--------+---------+-----------
  q      | integer |

-O

pgsql-jdbc by date:

Previous
From: Oliver Jowett
Date:
Subject: Re: metadata searching
Next
From: "scott.marlowe"
Date:
Subject: storing true/false, was: Comments on adding more connection URL parameters.