The SQLSetPos function is a SQL function that replaces the current data field to a specified location.
void @SQLSetPos(int id, int pos);
Parameters
int id : Access number connected by SQLConnect
int pos : Cursor position to set
Return Value
None
Example
@SQLSetPos($AddrID, pos);
Description : Change the position value of the current data field to the pos position. (The size of pos is DWORD)
Related Helps