diff --git a/build/exe/doliwamp/mysqltestinstall.bat.install b/build/exe/doliwamp/mysqltestinstall.bat.install new file mode 100644 index 00000000000..f10c092474c --- /dev/null +++ b/build/exe/doliwamp/mysqltestinstall.bat.install @@ -0,0 +1,21 @@ +@echo off +REM ----------------------------------- +REM Launch a test to connect to mysql +REM ----------------------------------- + +echo ---------------------------------------------- +echo This programm wil test a login on Mysql installed +echo by DoliWamp. +echo Version: WAMPMYSQLVERSION +echo Port: WAMPMYSQLPORT +echo ---------------------------------------------- +echo If login is successull, type "quit" to exit. +echo ---------------------------------------------- + +SET SAVES= +SET /P SAVES=Enter password to test: + +echo Try to connect to mysql with this password +.\bin\mysql\mysqlWAMPMYSQLVERSION\bin\mysql -P WAMPMYSQLPORT -u root -p%SAVES% + +sleep 2