The IDriver type exposes the following members.

Methods

  NameDescription
Configure
Configure the driver using settings.
CreateBatcher
Create an instance of IBatcher according to the configuration and the capabilities of the driver
CreateConnection
Creates an uninitialized IDbConnection object for the specific Driver
GenerateCommand
Generates an IDbCommand from the SqlString according to the requirements of the DataProvider.
PrepareCommand
Prepare the command by calling Prepare()()(). May be a no-op if the driver does not support preparing commands, or for any other reason.

Properties

  NameDescription
SupportsMultipleOpenReaders
Does this Driver support having more than 1 open IDataReader with the same IDbConnection.
SupportsMultipleQueries
Can we issue several select queries in a single query, and get several result sets back?

See Also