OpenFileWithResourceXtd
Incremental ISAM open, based on the IFIL Resource (extended).
Short Name
OPNRFILX()
Type
Extended ISAM function
Declaration
COUNT OpenFileWithResourceXtd(FILNO filno, cpTEXT filnam,
COUNT filmod, cpTEXT fileword)
Description
In V12 the file number typedef was formally changed from COUNT, a two-byte value to FILNO, a four-byte value. Refer to this link for compatibility details. Four Byte File Numbering
OpenFileWithResourceXtd() is a variation of OpenFileWithResource() that permits the use of the FairCom Server’s security system. This section expands on the description of OpenFileWithResource().
fileword is an optional file password. Set fileword to NULL if there is no password for this file. If a password is established, every user will need to use the password to be able to open the file. For more information on file passwords, review Security and Encryption (File Security and Encryption, /doc/ctreeplus/FileSecurityandEncryption.htm) in the c-tree Programmer’s Reference Guide.
Note: This function supports EXCLUSIVE file opens. For more information, please refer to Multi-user File Mode.
Return
OpenFileWithResourceXtd() returns the file number assigned to the data file. If an error occurs, the function returns a -1 and isam_err contains an error code. The following error codes may be seen in addition to those for OpenFileWithResource():
Value |
Symbolic Constant |
Explanation |
---|---|---|
456 |
SACS_ERR |
This user does not belong to a group that can access this file. |
457 |
SPWD_ERR |
Invalid password. |
See c-tree Error Codes for a complete listing of valid c-tree error values.
Return Relative File Number
In V11.5 and later, the OPNRFILX() function has been modified so that, when it is called with a negative data file number, if the open fails, isam_fil is returned as a relative file number:
isam_fil = 0 indicates the data file open failed.
isam_fil = 1 indicates the first index open failed, etc.
Note: This feature is a Compatibility Change.
Prior to this change, OPNRFILX() set isam_fil to the file number that was not possible to open. However, it did not return useful information when it was called with a negative data file number, such as OPNRFIL(-1).
See also
InitISAM(), CreateIFile(), OpenFileWithResource()