Click or drag to resize

SQLTable.OrderBy Method

X#
Specify an ORDER BY clause.

Namespace:  VO
Assembly:  VOSQLClasses (in VOSQLClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD OrderBy() AS USUAL CLIPPER
Request Example View Source

Return Value

Type: Usual
Examples
The following example demonstrates the use of the SQLTable:OrderBy() method:
X#
1oTable := SQLTable{#Customer,,oConn}
2oTable:OrderBy("CustNum DESC")
3oTable:Seek()
See Also