Activity overview
Latest activity by hrjk
If you can generate script like below for empty blob field then that should work: INSERT INTO tablename VALUES ('', '', 'testabc');
/ comments
If you can generate script like below for empty blob field then that should work:INSERT INTO tablename VALUES ('', '', 'testabc');
No it generates script without any quotation mark like shown below: INSERT INTO tablename VALUES (0x, 0x, 'testabc');
But if the blob field is not empty then it generates hex value without quotation mark and that works fine but only for empty value it generates script like above and when I run that script it throws error. / comments
No it generates script without any quotation mark like shown below:INSERT INTO tablename VALUES (0x, 0x, 'testabc');
But if the blob field is not empty then it generates hex value without...
Generates 0x in script for empty blob type field
MySQL Data Compare generates scripts with 0x for empty value for blob type field and when i run the script in MySQL workbench it throws this error "Error Code: 1054. Unknown column '0x' in 'field l...