ExecuteReader(CommandBehavior) Method
Executes the CommandText against the Connection, and returns a VistaDBDataReader using one of the CommandBehavior values.
'Declaration
Public Overloads Shadows Function ExecuteReader( _
ByVal As System.Data.CommandBehavior _
) As VistaDBDataReader
'Usage
Dim instance As VistaDBCommand
Dim behavior As System.Data.CommandBehavior
Dim value As VistaDBDataReader
value = instance.ExecuteReader(behavior)
public new VistaDBDataReader ExecuteReader(
System.Data.CommandBehavior
)
Parameters
- behavior
- One of the CommandBehavior values.
Return Value
A VistaDBDataReader object.
The following example creates a VistaDBCommand, and then executes it.
public void Execute(VistaDBCommand command)
{
command.Connection.Open();
using(VistaDBDataReader reader = command.ExecuteReader(CommandBehavior.CloseConnection))
{
while(reader.Read())
{
Console.WriteLine("{0}", reader[0]);
}
}
}
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