blob: 1ae474ec5d67e23db9ee7a6a329a8ae3c9ba1158 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
@echo off
rem file : pgsql-driver.bat
rem copyright : Copyright (c) 2009-2015 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 options 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"
rem set "options=%options% --host="
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
|