Mimer SQL Data Provider
ExecuteReader(CommandBehavior) Method




Mimer.Data.Client Namespace > MimerBatch Class > ExecuteReader Method : ExecuteReader(CommandBehavior) Method
A System.Data.CommandBehavior value that specifies a description of the results of the query and its effect on the database.
Executes the batch against its connection using the System.Data.CommandBehavior, returning a MimerDataReader which can be used to access the results.
Syntax
'Declaration
 
Public Overloads Shadows Function ExecuteReader( _
   ByVal behavior As CommandBehavior _
) As MimerDataReader
public new MimerDataReader ExecuteReader( 
   CommandBehavior behavior
)
public function ExecuteReader( 
    behavior: CommandBehavior
): MimerDataReader; 
public hide function ExecuteReader( 
   behavior : CommandBehavior
) : MimerDataReader;
public: new MimerDataReader* ExecuteReader( 
   CommandBehavior behavior
) 

Parameters

behavior
A System.Data.CommandBehavior value that specifies a description of the results of the query and its effect on the database.

Return Value

The created MimerDataReader object.
Remarks
This statement is typically used when the result of the SQL statement is a result set. However, any type of statement can be processed with the MimerDataReader. The FieldCount property returns a non-zero value for a result set and zero otherwise.
Requirements

.NET Framework
Version 4.6.2 or later

See Also

Reference

MimerBatch Class
MimerBatch Members
Overload List