Oracle Call Interface Programmer's Guide Release 2 (9.2) Part Number A96584-01 |
|
More OCI Relational Functions, 27 of 106
Opens a FILE on the file system of the server for read-only access.
sword OCILobFileOpen ( OCISvcCtx *svchp, OCIError *errhp, OCILobLocator *filep, ub1 mode );
The service context handle.
An error handle you can pass to OCIErrorGet()
for diagnostic information in the event of an error.
The FILE to open. It is an error if the locator does not refer to a FILE.
Mode in which to open the file. The only valid mode is OCI_FILE_READONLY.
Opens a FILE on the file system of the server. The FILE can be opened for read-only access. FILEs may not be written through Oracle. It is an error to call this function for an internal LOB.
This function is only meaningful the first time it is called for a particular FILE locator. Subsequent calls to this function using the same FILE locator have no effect.
See Also:
For more information about FILEs, refer to the description of |
OCIErrorGet(), OCILobClose(), OCILobFileCloseAll(), OCILobFileExists(), OCILobFileClose(), OCILobFileIsOpen(), OCILobOpen(), OCILobIsOpen()
|
Copyright © 1996, 2002 Oracle Corporation. All Rights Reserved. |
|