From bf2cfa77a1003319b4c0b768f724d1481ec866aa Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Tue, 3 Jun 2014 18:39:12 +0200 Subject: Remove unnecessary sub-directory --- test/windows/mysql-driver.bat | 46 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 test/windows/mysql-driver.bat (limited to 'test/windows/mysql-driver.bat') diff --git a/test/windows/mysql-driver.bat b/test/windows/mysql-driver.bat new file mode 100644 index 0000000..75df06c --- /dev/null +++ b/test/windows/mysql-driver.bat @@ -0,0 +1,46 @@ +@echo off +rem file : mysql-driver.bat +rem copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC +rem license : GNU GPL v2; see accompanying LICENSE file + +rem +rem mysql-driver.bat sql-file +rem +rem Run the mysql client on the SQL file specified. +rem + +setlocal + +set "options=%MYSQL_OPTIONS%" +set "options=%options% --user=odb_test" +set "options=%options% --database=odb_test" +rem set "options=%options% --password=" +set "options=%options% --host=192.168.0.X" +rem set "options=%options% --post=" +rem set "options=%options% --socket=" + +set "mysql=%MYSQL_CLIENT%" + +if "_%mysql%_" == "__" set "mysql=mysql" + +if "_%1_" == "__" ( + echo no sql file specified + goto usage +) + +%mysql% %options% < %1 + +if errorlevel 1 goto error +goto end + +:usage +echo. +echo usage: mysql-driver.bat sql-file +echo. + +:error +endlocal +exit /b 1 + +:end +endlocal -- cgit v1.1