I am converting an application from Sybase SQL Server to Microsoft SQL Server 2000 and I need to know how to convert the following two embedded SQL statements:
blob lblb_letter_text
selectblob custom_letter
into :lblb_letter_text
from Fulfillment_Letter
where fulfill_id = :ll_fulfill_id using sqlca;
BLOB lb_rte
UPDATEBLOB Service_Referral
SET profile_rte = :lb_rte
WHERE service_plan_id = :il_service_plan_id ;
blob lblb_letter_text
selectblob custom_letter
into :lblb_letter_text
from Fulfillment_Letter
where fulfill_id = :ll_fulfill_id using sqlca;
BLOB lb_rte
UPDATEBLOB Service_Referral
SET profile_rte = :lb_rte
WHERE service_plan_id = :il_service_plan_id ;