View Single Post
Old 10-08-2007, 02:08 PM  
neoxed
Too much time...
 
Join Date: May 2003
Posts: 1,326
Default

Apparently the MySQL Command Line Client uses the semi-colon as its default delimiter, which screwed up the creation of stored procedures.

Use the following commands instead, I will update readme.txt for future versions.

Code:
1. Create a MySQL database and import the schema.sql file.

   mysql -u root -p -h 192.168.1.1 -e "CREATE DATABASE ioftpd"
   mysql -u root -p -h 192.168.1.1 -D ioftpd --delimiter=$ < schema.sql

Last edited by neoxed; 10-08-2007 at 02:37 PM.
neoxed is offline   Reply With Quote