diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2014-06-03 18:39:12 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2014-06-03 18:39:12 +0200 |
commit | bf2cfa77a1003319b4c0b768f724d1481ec866aa (patch) | |
tree | 7a03926ddd11f3c4d6e06f5bb3f7075cb6305227 /test/windows/oracle-driver.bat | |
parent | 829051104d5544c56b49ebfa181b092cc5e698f3 (diff) |
Remove unnecessary sub-directory
Diffstat (limited to 'test/windows/oracle-driver.bat')
-rw-r--r-- | test/windows/oracle-driver.bat | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/test/windows/oracle-driver.bat b/test/windows/oracle-driver.bat new file mode 100644 index 0000000..36a0d85 --- /dev/null +++ b/test/windows/oracle-driver.bat @@ -0,0 +1,42 @@ +@echo off +rem file : oracle-driver.bat +rem copyright : Copyright (c) 2009-2013 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@//192.168.0.X: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 |