Re: dumping fields from Perl - Mailing list pgsql-general

From Zak McGregor
Subject Re: dumping fields from Perl
Date
Msg-id 20040301011706.12d5ad23.zak@mighty.co.za
Whole thread Raw
In response to dumping fields from Perl  (Tony Rice <email@email.com>)
List pgsql-general
On Sun, 29 Feb 2004 13:11:48 -0600
Tony Rice <email@email.com> wrote:

> How can I dump the field names and their type and attributes from Perl?

use Pg;
use strict;
use warnings;

my $select=<<"SQL";

SELECT c.relname, a.attname, t.typname, a.attrelid
FROM pg_class c, pg_attribute a, pg_type t
WHERE c.relkind = 'r'
AND a.attnum > 0
AND a.attrelid = c.oid and a.atttypid = t.oid
ORDER BY relname, attname

SQL

# Do connection here...
my $PG=new Pg::connectdb(".....");
my $res=$PG->exec($select);

etc.

Hope that helps. I may have typoed above, and it is untested, but it's something
to work with.

Ciao

Zak

--
========================================================================
http://www.carfolio.com/        Searchable database of 10 000+ car specs
========================================================================

pgsql-general by date:

Previous
From: elein
Date:
Subject: Re: SERIAL type - auto-increment grouped by other field
Next
From: Zak McGregor
Date:
Subject: count(1) return 0?