The DriverBase type exposes the following members.

Constructors

  NameDescription
Protected methodDriverBase
Initializes a new instance of the DriverBase class

Methods

  NameDescription
Public methodAdjustCommand
Override to make any adjustments to each IDbCommand object before it added to the batcher.
Protected methodCloneParameter
Public methodConfigure
Public methodCreateCommand
Public methodCreateConnection
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Public methodExpandQueryParameters
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodFormatNameForParameter
Changes the parameterName into the correct format for an IDbParameter for the Driver.
Public methodFormatNameForSql
Change the parameterName into the correct format IDbCommand.CommandText for the ConnectionProvider
Public methodGenerateCommand
Public methodGenerateOutputParameter
Public methodGenerateParameter
Generates an IDbDataParameter for the IDbCommand. It does not add the IDbDataParameter to the IDbCommand's Parameter collection.
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetResultSetsCommand
Protected methodGetSqlStringFormatter
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodInitializeParameter
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodOnBeforePrepare
Override to make any adjustments to the IDbCommand object. (e.g., Oracle custom OUT parameter) Parameters have been bound by this point, so their order can be adjusted too. This is analagous to the RegisterResultSetOutParameter() function in Hibernate.
Public methodPrepareCommand
Public methodRemoveUnusedCommandParameters
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)

Extension Methods

  NameDescription
Public Extension MethodAs<(Of <<'(T>)>>) (Defined by TypeHelperExtensionMethods.)
Public Extension MethodIsBetween
Apply a "between" constraint to the named property Note: throws an exception outside of a QueryOver expression
(Defined by RestrictionExtensions.)
Public Extension MethodIsIn(array<Object>[]()[][])Overloaded.
Apply an "in" constraint to the named property Note: throws an exception outside of a QueryOver expression
(Defined by RestrictionExtensions.)
Public Extension MethodIsIn(ICollection)Overloaded.
Apply an "in" constraint to the named property Note: throws an exception outside of a QueryOver expression
(Defined by RestrictionExtensions.)
Public Extension MethodIsProxy (Defined by NHibernateProxyHelper.)
Public Extension MethodToTypeParameters (Defined by ReflectHelper.)

Properties

  NameDescription
Protected propertyIsPrepareSqlEnabled
Public propertyNamedPrefix
The Named Prefix for parameters.
Public propertySupportsMultipleOpenReaders
Public propertySupportsMultipleQueries
Protected propertySupportsPreparingCommands
Does this Driver support IDbCommand.Prepare().
Public propertyUseNamedPrefixInParameter
Does this Driver require the use of the Named Prefix when trying to reference the Parameter in the Command's Parameter collection.
Public propertyUseNamedPrefixInSql
Does this Driver require the use of a Named Prefix in the SQL statement.

See Also