Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
More OCI Relational Functions, 26 of 106
Tests to see if the FILE is open
sword OCILobFileIsOpen ( OCISvcCtx *svchp, OCIError *errhp, OCILobLocator *filep, boolean *flag );
The OCI service context handle.
An error handle you can pass to OCIErrorGet()
for diagnostic information in the event of an error.
Pointer to the FILE locator being examined.
Returns TRUE
if the FILE was opened using this particular locator; FALSE
if it was not.
Checks to see if a file on the server was opened with the filep
FILE locator. It is an error to call this function for an internal LOB.
If the input FILE locator was never passed to the OCILobFileOpen()
or OCILobOpen()
command, the file is considered not to be opened by this locator. However, a different locator may have the file open. Openness is associated with a particular locator.
See Also:
For more information about FILEs, refer to the description of |
OCIErrorGet(), OCILobClose(), OCILobFileCloseAll(), OCILobFileExists(), OCILobFileClose(), OCILobFileOpen(), OCILobOpen(), OCILobIsOpen()
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|