SA_IsiReadKey
SA_IsiReadKey retrieves the key of last record read.
int SA_IsiReadKey ( SA_FH IsiFH, u8 *Buffer, u32 BufLen );
Note the following:
If BuffLen is less that the actual key length, only the key is truncated.
Function return codes are as follows:
|
Value |
Meaning |
|
nn |
Length of Key. |
|
0 |
No record meet this key specification. |
|
-nn |
Error as described in Sunaccess Errors |
Example:
long fh;
char buffer[2048];
SA_IsiReadKey(fh, buffer, sizeof(buffer);
![]() |