diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-07-24 19:35:23 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-07-24 19:35:23 +0200 |
commit | f341a3fd9c38e4e43a0fc792f382447965d6ce83 (patch) | |
tree | e0c9e1606216fa0790bc07518afab6fc07043788 /pgsql-driver.bat | |
parent | bd9f8b9a58b14a2a178632917bba0dbf5db0b51a (diff) |
Correct psql option from --user to --username
Diffstat (limited to 'pgsql-driver.bat')
-rw-r--r-- | pgsql-driver.bat | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pgsql-driver.bat b/pgsql-driver.bat index 40cfedf..338d00d 100644 --- a/pgsql-driver.bat +++ b/pgsql-driver.bat @@ -17,11 +17,11 @@ set "options=%PGSQL_OPTIONS%" rem This user must be able to login without specifying a password. rem -set "options=%options% --user=odb_test" +set "options=%options% --username=odb_test" set "options=%options% --dbname=odb_test" rem set "options=%options% --host=" -rem set "options=%options% --post=" +rem set "options=%options% --port=" set "options=%options% --quiet" set "PGOPTIONS=--client-min-messages=warning" |