blob: 7f531ed22616970ad7055b002e07cfbf77188a11 (
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
|
@echo off
rem file : oracle-driver.bat
rem author : Boris Kolpackov <boris@codesynthesis.com>
rem copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC
rem license : GNU GPL v2; see accompanying LICENSE file
rem
rem oracle-driver.bat sql-file
rem
rem Run the oracle client on the SQL file specified. Adjust the
rem option below to match your Oracle setup.
rem
setlocal
set "options=%ORACLE_OPTIONS% -L -S"
set "options=%options% odb_test/odb_test"
rem set "options=%options% odb_test/odb_test@//192.168.0.5:1521/xe"
set "oracle=%ORACLE_CLIENT%"
if "_%oracle%_" == "__" set "oracle=sqlplus"
if "_%1_" == "__" (
echo no sql file specified
goto usage
)
%oracle% %options% @%1
if errorlevel 1 goto error
goto end
:usage
echo.
echo usage: oracle-driver.bat sql-file
echo.
:error
endlocal
exit /b 1
:end
endlocal
|