SQLTable.OrderBy Method (Typed) | |
Specify an ORDER BY clause.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOSQLClasses (in XSharp.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