Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
OCI Cartridge Functions, 31 of 43
Closes a previously opened file.
sword OCIFileClose( dvoid *hndl, OCIError *err, OCIFileObject *filep );
The OCI environment or user session handle.
The OCI error handle. If there is an error, it is recorded in err
and this function returns OCI_ERROR. Diagnostic information can be obtained by calling OCIErrorGet()
.
A pointer to a file identifier to be closed.
Once this returns, the OCIFileObject structure pointed to by filep
will have been destroyed. Therefore, you should not attempt to access this structure after this returns.
OCI_SUCCESS,
OCI_INVALID_HANDLE,
OCI_ERROR.
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|