Comments
Sort by recent activity
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...