(install) creating mysql schema
Status: Inactive
Brought to you by:
tenney
Generally now mysql always requires a user and password.
I've just started installing Prospector and hit this with
mysql-create.sh
Here is how I dealt with it. For each line like:
mysql --exec="CREATE DATABASE calendar;"
I changed it to:
mysql -u$1 -p$2 --exec="CREATE DATABASE calendar;"
and involked it with
./mysql-create.sh myuser mypassword
Thanks for GPLing this program.