MI_LO_FD mi_lo_from_file(conn, LO_dptr, fname_spec, open_mode, offset,amount, LO_spec) MI_CONNECTION *conn; MI_LO_HANDLE **LO_dptr; const char *fname_spec; mi_integer open_mode; mi_integer offset; mi_integer amount; MI_LO_SPEC *LO_spec;
A pointer to a connection descriptor established by a previous call to mi_open( ), mi_server_connect( ), or mi_server_reconnect( )
A NULL-valued pointer (database server only)
Valid in Client LIBMI Application? | Valid in User-Defined Routine? |
---|---|
Yes | Yes |
The mi_lo_from_file( ) function performs the following steps to create a new smart large object that LOhdl_dptr references and copy data from an operating-system file to a new smart large object:
If the LOhdl_dptr argument is NULL, mi_lo_from_file( ) allocates a new LO handle for the new smart large object and assigns a pointer to this handle to LOhdl_dptr. If LOhdl_dptr is not NULL, mi_lo_from_file( ) assumes that you have already allocated an LO handle and uses the LOhdl_dptr argument to locate the LO handle for the new smart large object.
If the LO-specification structure has not been updated with storage characteristics (the associated fields are null), the mi_lo_from_file( ) function uses the system-specified storage characteristics.
If the LO-specification structure was updated with storage characteristics, mi_lo_from_file( ) uses the storage characteristics that the LO-specification structure defines for the new smart large object.
The mi_lo_from_file( ) function does not accept an open-mode flag for the smart large object as an argument. The open_mode argument specifies the open mode for the operating-system file.
The mi_lo_from_file( ) function opens the operating-system file in the mode that the open_mode argument indicates. In the fname_spec operating-system file, the mi_lo_from_file( ) function begins the read operation at the file offset that offset indicates and reads the number of bytes that amount specifies. The function writes the file data to the sbspace of the new smart large object.
When the mi_lo_from_file( ) function is successful, it returns a valid LO file descriptor. When it completes, mi_lo_from_file( ) leaves the LO file position at the end of the smart large object. It does not reset the LO file position to the beginning of the smart large object.
You can use this file descriptor to identify which smart large object to access in subsequent function calls, such as mi_lo_read( ) and mi_lo_write( ).
The mi_lo_from_file( ) function is a constructor function for both an LO file descriptor and an LO handle.
If the mi_lo_from_file( ) function allocates an LO handle, it allocates this LO handle in the current memory duration. The mi_lo_from_file( ) function does not allocate memory for the LO file descriptor. Your UDR can assign this LO file descriptor to user memory with a desired memory duration.
You can include environment variables in the fname_spec path with the following syntax:
$ENV_VAR
These environment variables must be set in the database server environment; that is, they must be set before the database server starts.
The mi_lo_from_file( ) function can access the operating-system files on either the server or the client computer. The file-mode values for the open_mode argument indicate the location of the file to copy and the access mode of the source file. Valid values include the following file-mode constants.
The default open_mode value is:
MI_O_RDONLY | MI_O_CLIENT_FILE
The mi_lo_from_file( ) function allows you to copy part of a file with the offset and amount parameters.
Each mi_lo_from_file( ) call is implicitly associated with the current session. When this session ends, the database server deallocates any smart large object that mi_lo_from_file( ) has created if its LO handle has not been stored in a column (its reference count is zero) and no open LO file descriptors exist for the smart large object.
The mi_lo_from_file( ) function does not need a connection descriptor to execute. If your UDR does not need a valid connection for other operations, you can specify a NULL-valued pointer for the conn parameter to establish a NULL connection. For information on the advantages of a NULL connection, see the IBM Informix: DataBlade API Programmer's Guide.
See also the descriptions of mi_lo_copy( ), mi_lo_create( ), mi_lo_from_buffer( ), mi_lo_spec_init( ), mi_lo_from_file_by_lofd( ), and mi_lo_to_file( ).
For information on the use of mi_lo_from_file( ) in an import opaque-type support function, see the IBM Informix: DataBlade API Programmer's Guide.