blob: 562e6b12f71ddf824e3871cf12e2ccbe3833561a (
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
62
|
@echo off
rem file : mssql-driver.bat
rem copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
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
|