Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
More OCI Relational Functions, 20 of 106
Enable LOB buffering for the input locator.
sword OCILobEnableBuffering ( OCISvcCtx *svchp, OCIError *errhp, OCILobLocator *locp );
The service context handle.
An error handle you can pass to OCIErrorGet()
for diagnostic information in the event of an error.
An internal LOB locator uniquely referencing the LOB.
Enables LOB buffering for the input internal LOB locator. The next time data is read from or written to the LOB through the input locator, the LOB buffering subsystem is used.
If LOB buffering is enabled for a locator and that locator is passed to one of the following routines, an error is returned: OCILobAppend()
, OCILobCopy()
, OCILobErase()
, OCILobGetLength()
, OCILobLoadFromFile()
, OCILobTrim()
, or OCILobWriteAppend()
.
This function does not accept a FILE locator.
OCILobDisableBuffering(), OCIErrorGet(), OCILobWrite(), OCILobRead(), OCILobFlushBuffer(), OCILobWriteAppend()
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|