CoreDb.Skip Method | |
Move the record pointer relative to the current record.
Namespace:
XSharp
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax STATIC METHOD Skip(
nRecords AS LONG
) AS LOGIC
public static bool Skip(
int nRecords
)
Request Example
View SourceParameters
- nRecords
- Type: Long
The number of logical records to move, relative to the current record. A positive value means to skip forward, and a negative value means to skip backward.
Return Value
Type:
LogicTRUE if successful; otherwise, FALSE.
Remarks This function is like DBSkip() but strongly typed.
This function, however, does not call the error
handler and will therefore not produce a runtime error message or create an error object if it fails.
Therefore it is important to check the return value to determine if the function succeeded.
The LastRddError property in the runtimestate
will contain needed information about any error that occurs.
Tip |
---|
DbSkip(), VoDbSkip() and CoreDb.Skip() are aliases |
See Also