Re: metadata searching

From: Oliver Jowett <oliver(at)opencloud(dot)com>
To: Juriy Goloveshkin <j(at)gu(dot)ru>
Cc: pgsql-jdbc(at)postgresql(dot)org
Subject: Re: metadata searching
Date: 2004-02-04 10:46:35
Message-ID: 4020CD8B.9090307@opencloud.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

In response to

Browse pgsql-jdbc by date

  From Date Subject
Next Message scott.marlowe 2004-02-04 16:36:36 storing true/false, was: Comments on adding more connection URL parameters.
Previous Message Oliver Jowett 2004-02-04 10:04:44 Re: metadata searching