I had the same problem but found that it was the tomestamp and date that was added to the db in the command line client, easily fixed by adding tha approtriate info for example:-
mysql> INSERT INTO users VALUES(
->NULL,
->'Pads',
->password('password'),
->'Brian Reid',
->'Winger',
->'
[email protected]',
->'A top class ball handler.'),
->'yyyy-mm-dd',
->'yyyymmddhhmmss');
Note the extra date and time tables in the db, either drop the tables or populate them. You might have others tho so check and see first.
you can do that by opening your command line client and typing in your password, then type:-
mysql> SHOW DATABASES;
and you should get something that looks like this:-
--------------------
| Database |
--------------------
| Test |
| Sample_db |
--------------------
Then type:-
mysql> USE sample_db;
Then type:-
mysql> SHOW TABLES;
and you'll get something like this...
-----------------------
| Tables in sample_db |
-----------------------
| access_log |
| user |
-----------------------
then you type...
mysql> DESC user;
and you should get a list of all the field titles which you need to fill when you enter the information into the database through your command line client.
I understand this post is way late but maybe it can help someone else...
Dislexics have more fnu