dotConnect for Oracle Documentation
Devart.Common Namespace / SelectStatement Class / OrderBy Property
Example

OrderBy Property
Contains list of columns used in the ORDER BY clause of the current SelectStatement object.
Syntax
'Declaration
 
Public ReadOnly Property OrderBy As SelectColumnCollection
 

Property Value

A SelectColumnCollection that represents list of columns used in the ORDER BY clause.
Example
The following example demonstrates how to use the OrderBy property.
OracleSelectStatement stmt = new OracleSelectStatement();
SelectColumn empName = new SelectColumn("ENAME");
stmt.Columns.Add(empName);
stmt.Tables.Add(new SelectTable("emp"));

stmt.OrderBy.Add(empName);

//select ENAME from emp order by ENAME
OracleCommand command = new OracleCommand(stmt.ToString());
Dim stmt As New OracleSelectStatement
Dim empName As New SelectColumn("ENAME")
stmt.Columns.Add(empName)
stmt.Tables.Add(New SelectTable("emp"))

stmt.OrderBy.Add(empName)

'select ENAME from emp order by ENAME
Dim command5 As New OracleCommand(stmt.ToString)
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also