Re: connection or query affected - Mailing list pgsql-general

From Steven Klassen
Subject Re: connection or query affected
Date
Msg-id 20041012162431.GA1554@commandprompt.com
Whole thread Raw
In response to connection or query affected  (Dennis Gearon <gearond@fireserve.net>)
Responses Re: connection or query affected  (Dennis Gearon <gearond@fireserve.net>)
List pgsql-general
* Dennis Gearon <gearond@fireserve.net> [2004-10-12 08:13:07 -0700]:

>    turn off autocommit

Per connection.

>    start transaction
>    commit transaction

They're statements themselves that change the state of the
connection. You start a transaction, run your queries, and then
commit/rollback.

>    SET schema

It depends if you're setting your search path for subsequent queries
which would be tracked per connection or you're actually prepending
the schema where the table exists in the query.

E.g.

$dbh->query("SET search_path='my_schema'");

- or -

$dbh->query('SELECT foo FROM my_schema.bar WHERE active');

--
Steven Klassen - Lead Programmer
Command Prompt, Inc. - http://www.commandprompt.com/
PostgreSQL Replication & Support Services, (503) 667-4564

pgsql-general by date:

Previous
From: Eric D Nielsen
Date:
Subject: Re: Need some advice on appropriate PL strategy... ["solved/thanks"]
Next
From: Martijn van Oosterhout
Date:
Subject: Re: Message-ID as unique key?