MySqlDump null not working
Posted: Wed 08 Dec 2004 22:10
MySqlDump is apparently not dumping null values correctly.
This is my dump of a single row. Notice the lonely , , ,
INSERT INTO log VALUES (841, 'AppS', , , '', '2004-12-08 15:50:32');
When I try to restore, it gives an sql syntax error
If I manually change it to
INSERT INTO log VALUES (841, 'AppS', null, null, '', '2004-12-08 15:50:32');
it works fine.
Am I doing something wrong or is this a bug?
This is my dump of a single row. Notice the lonely , , ,
INSERT INTO log VALUES (841, 'AppS', , , '', '2004-12-08 15:50:32');
When I try to restore, it gives an sql syntax error
If I manually change it to
INSERT INTO log VALUES (841, 'AppS', null, null, '', '2004-12-08 15:50:32');
it works fine.
Am I doing something wrong or is this a bug?