ArcFM Responder Mobile Developer Guide
ExecuteDataTable Method






The operation to perform against the database
Executes an operation against the database that returns multiple records (via a DataSet).
Syntax
'Declaration
 
Public Function ExecuteDataTable( _
   ByVal session As DataSession, _
   ByVal operation As IDbOperation _
) As System.Data.DataTable
'Usage
 
Dim instance As DataSource
Dim session As DataSession
Dim operation As IDbOperation
Dim value As System.Data.DataTable
 
value = instance.ExecuteDataTable(session, operation)
public System.Data.DataTable ExecuteDataTable( 
   DataSession session,
   IDbOperation operation
)
public function ExecuteDataTable( 
    session: DataSession;
    operation: IDbOperation
): System.Data.DataTable; 
public function ExecuteDataTable( 
   session : DataSession,
   operation : IDbOperation
) : System.Data.DataTable;
public: System.Data.DataTable* ExecuteDataTable( 
   DataSession* session,
   IDbOperation* operation
) 
public:
System.Data.DataTable^ ExecuteDataTable( 
   DataSession^ session,
   IDbOperation^ operation
) 

Parameters

session
operation
The operation to perform against the database

Return Value

A DataTable that contains the resultset
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

Reference

DataSource Class
DataSource Members

Send Feedback