Hi ,
I am trying to insert data into a CLOB column, but I get error of missing comma because my CLOB data value has lot's of comma and other special characters which might need to be escaped. Is there a easier way to do this, without writing code to put escape character before all special characters in CLOB data value.
sStatement.Format(_T("INSERT INTO rktable (rk_clob_col) values (%s),rk_str));
Thanks in advance.
Rohan