Responder Developer Guide
ExecuteReader Method


Version: 10.2.1a

Resource Center Home

The operation to perform against the database
Executes an operation against the database and returns a DataReader.
Syntax
'Declaration
 
Public Function ExecuteReader( _
   ByVal session As DataSession, _
   ByVal operation As IDbOperation _
) As IDataReader
'Usage
 
Dim instance As DataSource
Dim session As DataSession
Dim operation As IDbOperation
Dim value As IDataReader
 
value = instance.ExecuteReader(session, operation)
public IDataReader ExecuteReader( 
   DataSession session,
   IDbOperation operation
)

Parameters

session
operation
The operation to perform against the database
Remarks
The DataReader is a disposable object. Therefore, when calling this method the caller must remember to call the dispose method (or the "using" statement).
Requirements

Target Platforms: Windows XP SP3 (32-bit and 64-bit), Windows 7 (32-bit and 64-bit)

Not all Operating Systems are supported on all products. Visit the ArcFM Solution Supported Versions page for full details.

See Also

Reference

DataSource Class
DataSource Members

 

 


Send Comment