SQLSelect.Skip Method (Typed) | |
Move forward or backward relative to the current row. (Similar to the Skip() function).
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOSQLClasses (in XSharp.VOSQLClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD Skip(
nSkip AS LONG
) AS LOGIC
public override bool Skip(
[DefaultParameterValueAttribute(1, 0)] int nSkip
)
Request Example
View SourceParameters
- nSkip
- Type: Long
Return Value
Type:
Logic
TRUE if successful; otherwise, FALSE (including if beginning or end of data was encountered).
Remarks Tip |
---|
Not all data servers are capable of moving backward. (See SQLConnection:ScrollCsr and SQLSelect:BufferData().) |
Sends a NotifyRecordChange message if any move was made.
See Also