Re: [GENERAL] connection or query affected

2004-10-12 Thread Dennis Gearon
Steven Klassen wrote: * Dennis Gearon <[EMAIL PROTECTED]> [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

Re: [GENERAL] connection or query affected

2004-10-12 Thread Steven Klassen
* Dennis Gearon <[EMAIL PROTECTED]> [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. >

[GENERAL] connection or query affected

2004-10-12 Thread Dennis Gearon
please cc me If I am using some server side langauge to access Postgres - php, python, perl, asp, if I make a connection, do the following actions affect the connection, or the individual query that contains them: turn off autocommit start transaction commit transaction SET schema --