Re: DBD::PG question

From: Frank Bax <fbax(at)sympatico(dot)ca>
To: pgsql-interfaces(at)postgresql(dot)org
Subject: Re: DBD::PG question
Date: 2005-03-29 17:54:22
Message-ID: 5.2.1.1.0.20050329124852.00ac9130@pop6.sympatico.ca
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

At 07:30 AM 3/29/05, Frank Bax wrote:

>In a perl script using DBI and DBD:Pg, I need to drop/create a table:
> $dbp->{RaiseError} = 0;
> $dbp->do( "DROP TABLE $table" );
> $dbp->{RaiseError} = 1;
> $dbp->do( "CREATE TABLE $table ..." );
>
>If the table does not exist, the "DROP TABLE" produces an error message;
>but script doesn't die because RaiseError was set to zero. Is there a way
>to suppress this error message and then reset the change so an error in
>create *is* seen?

Thanks to Sean for suggesting I turn PrintError off/on:
http://search.cpan.org/~timb/DBI-1.48/DBI.pm#PrintError
Works as advertised - if only I'd found those docs before asking my question...

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message Greg Stark 2005-03-29 18:15:18 Re: DBD::PG question
Previous Message Frank Bax 2005-03-29 12:30:48 DBD::PG question