4K이상의 Data는 Insert가 안되고 있습니다...
Clob으로 하면 잘되는데... 여건상... Long으로 해야 합니다...
고수님들의 조언 부탁드립니다....
{update fax_log set fax_send_context = :sData,
send_status_code = 'W', file_send_yn = '0' where send_status_code ='Z' and fax_rqst_day = :sDate and fax_rqst_time = :sTime and agt_code = :sAgt
}
with Form1.qryUpdate do begin
ParamByName('sDate').asString := sDate;
ParamByName('sTime').asString := sTime;
ParamByName('sAgt').asString := sAgt;
ParamByName('sData').asString := sData; //Long Type Column
try
sqlt := sql.text;
ExecSQL;