diff options
author | Constantin Michael <constantin@codesynthesis.com> | 2011-05-04 17:17:59 +0200 |
---|---|---|
committer | Constantin Michael <constantin@codesynthesis.com> | 2011-07-06 09:52:33 +0200 |
commit | bc54b4bd56c757ec1279896b8b0639a4a9a7e0cd (patch) | |
tree | 813c462512f83e13e47d4b07c5faccd780f7b108 /build/pgsql/pgsql | |
parent | b8d88b289aca145edbf031adbe904d877d93f3ba (diff) |
Add test infrastructure for libodb-pgsql
Diffstat (limited to 'build/pgsql/pgsql')
-rwxr-xr-x | build/pgsql/pgsql | 52 |
1 files changed, 52 insertions, 0 deletions
diff --git a/build/pgsql/pgsql b/build/pgsql/pgsql new file mode 100755 index 0000000..9e576ff --- /dev/null +++ b/build/pgsql/pgsql @@ -0,0 +1,52 @@ +#! /usr/bin/env bash + +# file : build/mysql/pgsql +# author : Constantin Michael <constantin@codesynthesis.com> +# copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +# license : GNU GPL v2; see accompanying LICENSE file + +# +# PostgreSQL driver wrapper. +# + +while [ $# -gt 0 ]; do + case $1 in + --driver) + driver=$2 + shift 2 + ;; + --user) + opt="$opt --user=$2" + shift 2 + ;; + --password) + opt="$opt --password=$2" + shift 2 + ;; + --dbname) + opt="$opt --dbname=$2" + shift 2 + ;; + --host) + opt="$opt --host=$2" + shift 2 + ;; + --port) + opt="$opt --port=$2" + shift 2 + ;; + *) + break + ;; + esac +done + +if [ -z "$driver" ]; then + driver=psql +fi + +if [ -n "$1" ]; then + exec $driver $opt <$1 +else + exec $driver $opt +fi |