This is a discussion on pgoptions syntax? within the pgsql Novice forums, part of the PostgreSQL category; --> what's the syntax of the PGOPTIONS environment variable? I'm trying to put something like 'autocommit=off', but more generally I ...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| what's the syntax of the PGOPTIONS environment variable? I'm trying to put something like 'autocommit=off', but more generally I want to know all the options that it has. regards -- Sent via pgsql-novice mailing list (pgsql-novice@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-novice |
| ||||
| "Fernando Fontana" <fernando.fontana@gmail.com> writes: > what's the syntax of the PGOPTIONS environment variable? > I'm trying to put something like 'autocommit=off', but more generally > I want to know all the options that it has. It's the same as command line options for the postgres executable, eg "--autocommit=off" (or "-c autocommit=off" if you have a version of getopt() that can't handle the former). regards, tom lane -- Sent via pgsql-novice mailing list (pgsql-novice@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-novice |