The SQL Script Generator could not handle fields that contain a value with a apostrophe ( ' ).
Example:
Field Value: 'Z'Rotz
Generated Script:
INSERT INTO .... VALUES (.... 'Z'Rotz' ....)
This should be: INSERT INTO .... VALUES (.... 'Z''Rotz' ....)
Log in to post a comment.