SQLTable.OrderBy Method | |
Specify an ORDER BY clause.
Namespace:
VO
Assembly:
VOSQLClasses (in VOSQLClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD OrderBy() AS USUAL CLIPPER
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual OrderBy()
Request Example
View SourceReturn Value
Type:
UsualExamples
The following example demonstrates the use of the SQLTable:OrderBy() method:
1oTable := SQLTable{#Customer,,oConn}
2oTable:OrderBy("CustNum DESC")
3oTable:Seek()
See Also