A windows batch to run Mysql client


/ Published in: DOS Batch
Save to your folder(s)

**Vars** to to specify

+ ${EnvSet_Bash}

**Demo**

vars specified like

+ ${EnvSet_Bash}=[set-mysqlRT-Env](http://www.snipplr.com/view/80407/an-example-bash-file-for-set-temporary-path/ "set-mysqlRT-Env.bat")

pluss other bash commond

**Demo**

@echo off
call set-mysqlRT-Env
mysql --defaults-file=%mysqlConf% --print-defaults
pause
mysql --defaults-file=%mysqlConf%
pause


Copy this code and paste it in your HTML
  1. @echo off
  2. call ${EnvSet_Bash}
  3. mysql --defaults-file=%mysqlConf% --print-defaults
  4. mysql --defaults-file=%mysqlConf%

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.