Datenbank

ahabig

New Member
Hello,
I get the following error

mysql.exe --user=dayz --password=xxx --host=localhost --port=3306 --database=hivemind --execute="call pMain(1)"

ERROR 1366 (HY000) at line 1: Incorrect decimal value: '' for column '' at row -1

thanks for the help
 
Dont use the (1). This should work:
mysql.exe --user=dayz --password=xxx --host=localhost --port=3306 --database=hivemind --execute="call pMain()"
 
Dont use the (1). This should work:
mysql.exe --user=dayz --password=xxx --host=localhost --port=3306 --database=hivemind --execute="call pMain()"

Adding the '1' parameter is only usable on the new database schema, not the old. If you're still using the old do not have the '1', leave it the way it was.
 
Back
Top