Is it possible that I can use ADO Recordset object in VC to access (store and retrieve) the LOB data with BLOB field in Oracle table?
From: Mark Liao <markl_at_symtrontech.com>
Date: Wed, 7 Nov 2001 11:34:44 +0800
Message-ID: <9sa9nf$b1$1_at_news.is.net.tw>
Date: Wed, 7 Nov 2001 11:34:44 +0800
Message-ID: <9sa9nf$b1$1_at_news.is.net.tw>
/* source code for adding Binary array into Oracle table */
BYTE BinaryImage[1024]; // binary array
VARIANT vValue; // variant parameter
BinaryArrayToVariant(BinaryImage,vValue); // transfer binary array to variant
pRecordset->Fields->GetItem("BinaryData")->Value=vValue; // add binary data to BLOB field
PS. The Oracle system I used is Oracle 9i.
Mark Liao ^^* Received on Wed Nov 07 2001 - 04:34:44 CET