DbBatchCommandBuilder ClassNReco.Data Class Library Documentation
Batch command builder that can produce several SQL statements into one IDbCommand.
Inheritance Hierarchy

System Object
  NReco.Data DbCommandBuilder
    NReco.Data DbBatchCommandBuilder

Namespace: NReco.Data
Assembly: NReco.Data (in NReco.Data.dll) Version: 1.0.2
Syntax

public class DbBatchCommandBuilder : DbCommandBuilder

The DbBatchCommandBuilder type exposes the following members.

Constructors

  NameDescription
Public methodDbBatchCommandBuilder
Initializes a new instance of the DbBatchCommandBuilder class
Top
Methods

  NameDescription
Public methodBeginBatch
Public methodEndBatch
Public methodEquals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
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.)
Protected methodGetCommand (Overrides DbCommandBuilder GetCommand .)
Public methodGetDeleteCommand
Gets the automatically generated IDbCommand object to delete rows by specified Query.
(Inherited from DbCommandBuilder.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetInsertCommand
Gets the automatically generated IDbCommand object to insert new record.
(Inherited from DbCommandBuilder.)
Public methodGetSelectCommand
Gets the automatically generated IDbCommand object to select rows by specified Query.
(Inherited from DbCommandBuilder.)
Protected methodGetSqlBuilder (Inherited from DbCommandBuilder.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetUpdateCommand
Gets the automatically generated IDbCommand object to update rows by specified Query.
(Inherited from DbCommandBuilder.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Protected methodSetCommandText (Overrides DbCommandBuilder SetCommandText(IDbCommand, String).)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Properties

  NameDescription
Public propertyCurrentBatchCommand
Gets current IDbCommand with batch of SQL statements.
Public propertyDbFactory
Gets DB Factory component.
(Inherited from DbCommandBuilder.)
Public propertyDeleteTemplate
Gets or sets template for SQL DELETE query.
(Inherited from DbCommandBuilder.)
Public propertyInsertTemplate
Gets or sets template for SQL INSERT query.
(Inherited from DbCommandBuilder.)
Public propertySelectTemplate
Gets or sets template for SQL SELECT query.
(Inherited from DbCommandBuilder.)
Public propertySqlStatementSeparator
Gets or sets separator between SQL statements (';' by default).
Public propertyUpdateTemplate
Gets or sets template for SQL UPDATE query.
(Inherited from DbCommandBuilder.)
Public propertyViews
Gets or sets view name -> DbDataView dictionary.
(Inherited from DbCommandBuilder.)
Top
See Also