I have the snapshots of what I see on my blog here:
http://blog.tutorialref.com/mysql/mysql ... s-224.html
When I try and execute the MySQL statements produced by the Synchronization Wizard I receive an error. The error is that one or more of the columns does not have a default value. So this statement:
Code: Select all
INSERT INTO ratings(id, rating) VALUES (62, 2);
INSERT INTO ratings(id, rating) VALUES (61, 4);
INSERT INTO ratings(id, rating) VALUES (63, 3);
Code: Select all
INSERT INTO ratings(id, rating, div_id, ip) VALUES (62, 2, '', '');
INSERT INTO ratings (id, rating, div_id, ip) VALUES (61, 4, '', '');
INSERT INTO ratings (id, rating, div_id, ip) VALUES (63, 3, '', '');
Much thanks,
Victor[/code]