aboutsummaryrefslogtreecommitdiff
path: root/mssql-driver.bat
blob: 174cbf0cc69ac931e9cce53dc22a764ea3790a1c (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
52
53
54
55
56
57
58
59
60
61
@echo off
rem file      : mssql-driver.bat
rem license   : GNU GPL v2; see accompanying LICENSE file

rem
rem mssql-driver.bat sql-file
rem
rem Run the mssql client on the SQL file specified. Adjust the
rem options below to match your SQL Server setup.
rem

setlocal

set "options=%MSSQL_OPTIONS%"

rem User.
rem
set "options=%options% -U odb_test"

rem Password.
rem
set "options=%options% -P odb_test"

rem Database name.
rem
set "options=%options% -d odb_test"

rem SQL Server instance address.
rem
rem set "options=%options% -S host\instance"
rem set "options=%options% -S tcp:host,port"

rem Standard options.
rem
set "options=%options% -x -r -b"

set "mssql=%MSSQL_CLIENT%"

if "_%mssql%_" == "__" set "mssql=sqlcmd"

if "_%1_" == "__" (
  echo no sql file specified
  goto usage
)

%mssql% %options% -i %1

if errorlevel 1 goto error
goto end

:usage
echo.
echo usage: mssql-driver.bat sql-file
echo.

:error
endlocal
exit /b 1

:end
endlocal