Files
dolibarr/dev/build/exe/doliwamp/mysqltestinstall.bat.install
Laurent Destailleur (aka Eldy) c9519a1a5a Move dir build into dev/build
2025-01-05 14:28:07 +01:00

25 lines
879 B
Plaintext

@echo off
REM ------------------------------------------------------------
REM Launch a test to connect to mysql
REM ------------------------------------------------------------
REM To change password, run following SQL command:
REM GRANT ALL ON *.* TO login@localhost IDENTIFIED BY "newpassword"
echo -----------------------------------------------------------
echo This programm will test a login on Mysql installed
echo by DoliWamp.
echo Version: WAMPMYSQLVERSION
echo Port: WAMPMYSQLPORT
echo -----------------------------------------------------------
echo If login is successull, type "quit" and enter twice to exit.
echo ------------------------------------------------------------
SET SAVES=
SET /P SAVES=Enter password to test:
echo Try to connect to mysql with this password
.\bin\mariadb\mariadbWAMPMYSQLVERSION\bin\mysql -P WAMPMYSQLPORT -u root -p%SAVES%
pause