Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - .NET Programming » UltraLite .NET 2.0 API Reference » ULCommand class » ExecuteTable methods

ExecuteTable() method Next Page

ExecuteTable(CommandBehavior) method


UL Ext.: Retrieves, with the specified command behavior, a database table for direct manipulation. The ULCommand.CommandText is interpreted as the name of the table and ULCommand.IndexName can be used to specify a table sorting order.

Syntax

Visual Basic

Public Function ExecuteTable( _
ByVal cmdBehavior As CommandBehavior _
) As ULTable

C#

public ULTable ExecuteTable(
CommandBehavior cmdBehavior
);

Parameters
Return value

The table as a ULTable object.

Remarks

The ULCommand.CommandType must be set to System.Data.CommandType.TableDirect.

If the ULCommand.IndexName is a null reference (Nothing in Visual Basic), the primary key is used to open the table. Otherwise, the table is opened using the ULCommand.IndexName value as the name of the index by which to sort.

See also