From be14b557ce73cabb388c77c1e2bcb9936779f7c2 Mon Sep 17 00:00:00 2001 From: Constantin Michael Date: Sun, 24 Jul 2011 19:34:28 +0200 Subject: Update windows build and test scripts to include PostgreSQL --- test/windows/odb/pgsql-driver.bat | 53 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 test/windows/odb/pgsql-driver.bat (limited to 'test/windows/odb/pgsql-driver.bat') diff --git a/test/windows/odb/pgsql-driver.bat b/test/windows/odb/pgsql-driver.bat new file mode 100644 index 0000000..1b4b6ee --- /dev/null +++ b/test/windows/odb/pgsql-driver.bat @@ -0,0 +1,53 @@ +@echo off +rem file : pgsql-driver.bat +rem author : Constantin Michael +rem copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +rem license : GNU GPL v2; see accompanying LICENSE file + +rem +rem pgsql-driver.bat sql-file +rem +rem Run the pgsql client on the SQL file specified. Adjust the +rem option below to match your PostgreSQL setup. +rem + +setlocal + +set "options=%PGSQL_OPTIONS%" + +rem This user must be able to login without specifying a password. +rem +set "options=%options% --username=odb_test" + +set "options=%options% --dbname=odb_test" +set "options=%options% --host=192.168.0.X" +rem set "options=%options% --port=" + +set "options=%options% --quiet" +set "PGOPTIONS=--client-min-messages=warning" + +set "pgsql=%PGSQL_CLIENT%" + +if "_%pgsql%_" == "__" set "pgsql=psql" + +if "_%1_" == "__" ( + echo no sql file specified + goto usage +) + +%pgsql% %options% < %1 + +if errorlevel 1 goto error +goto end + +:usage +echo. +echo usage: pgsql-driver.bat sql-file +echo. + +:error +endlocal +exit /b 1 + +:end +endlocal -- cgit v1.1