PAN-6 added a Windows batch file to load the DB on Windows systems.

This commit is contained in:
2019-02-12 10:59:39 -07:00
parent 38e88c9f94
commit 04e662ecd6
2 changed files with 14 additions and 2 deletions
@@ -0,0 +1,5 @@
SET MYSQL_PWD=secret
FOR /R %%s IN (.\*.sql) do (
echo **** %%s ****
echo mysql --batch --quick --raw --line-numbers --force --user=panda < %%s
)