h****r 发帖数: 2056 | 1 Hi everyone,
I was try to write data to CLOB by the way
(prepare/bind/exec) you suggested
on the Oracle Discussion Group. But I got some error, below
is the piece code,
I wonder if I am on the correct way to do it.
say I have a table ExampleTab which contain two columns,
{
Oid int
ClobData CLOB
}
I am try to insert data to clobData by below code, assume
alreay created a
record which has Oid : 101 and ClobData is a emptyClob.
void updateClob(const char* lobString)
{
SQLRETURN l | w*****h 发帖数: 139 | 2 I have experience to insert BLOB into Oracle with JDBC. We have to use
Oracle's own JDBC classes to do it.
【在 h****r 的大作中提到】 : Hi everyone, : I was try to write data to CLOB by the way : (prepare/bind/exec) you suggested : on the Oracle Discussion Group. But I got some error, below : is the piece code, : I wonder if I am on the correct way to do it. : say I have a table ExampleTab which contain two columns, : { : Oid int : ClobData CLOB
|
|