Re: Information schema question.

2008-03-19 Thread Rob Wultsch
On Tue, Mar 18, 2008 at 9:58 AM, Carlos Savoretti <[EMAIL PROTECTED]> wrote: > Hi all! > > Well, question is how could I to retrieve information about > types supported . In PostgreSQL the query would be: > > -- > SELECT pg_type.oi

Re: Information schema question.

2008-03-18 Thread Sebastian Mendel
Carlos Savoretti schrieb: Hi all! Well, question is how could I to retrieve information about types supported. IMHO, no -- Sebastian -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Information schema question.

2008-03-18 Thread Carlos Savoretti
Hi all! Well, question is how could I to retrieve information about types supported . In PostgreSQL the query would be: -- SELECT pg_type.oid, typname, usename, obj_description(pg_type.oid) FROM pg_type, pg_user WHERE typowner=usesy