I'm converting a PB6.5 application from Sybase System 11 to MSS 2000. I am having touble with the following embedded SQL statement:
blob lb_tot_document
UPDATEBLOB Fulfillment_Letter_Type
SET letter_text = :lb_tot_Document
WHERE letter_id = :ll_LetterId USING SQLCA ;
It does not update. I get sqlcode = 0, sqldbcode = 156 and sqlerrtext = Incorrect syntax near the keyword 'NULL'. I don't use the keyword 'NULL'.
Any ideas for an equivalent replacement.
blob lb_tot_document
UPDATEBLOB Fulfillment_Letter_Type
SET letter_text = :lb_tot_Document
WHERE letter_id = :ll_LetterId USING SQLCA ;
It does not update. I get sqlcode = 0, sqldbcode = 156 and sqlerrtext = Incorrect syntax near the keyword 'NULL'. I don't use the keyword 'NULL'.
Any ideas for an equivalent replacement.