C# Class Mono.Data.Sqlite.SqliteDataAdapter

Inheritance: System.Data.Common.DbDataAdapter
ファイルを表示 Open project: rubenv/tripod Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
SqliteDataAdapter ( ) : System

Default constructor.

SqliteDataAdapter ( SqliteCommand cmd ) : System

Constructs a data adapter using the specified select command.

SqliteDataAdapter ( string commandText, SqliteConnection connection ) : System

Constructs a data adapter with the supplied select command text and associated with the specified connection.

SqliteDataAdapter ( string commandText, string connectionString ) : System

Constructs a data adapter with the specified select command text, and using the specified database connection string.

Protected Methods

Method Description
OnRowUpdated ( RowUpdatedEventArgs value ) : void

Raised by DbDataAdapter after a row is updated

OnRowUpdating ( RowUpdatingEventArgs value ) : void

Raised by the underlying DbDataAdapter when a row is being updated

Method Details

OnRowUpdated() protected method

Raised by DbDataAdapter after a row is updated
protected OnRowUpdated ( RowUpdatedEventArgs value ) : void
value System.Data.Common.RowUpdatedEventArgs The event's specifics
return void

OnRowUpdating() protected method

Raised by the underlying DbDataAdapter when a row is being updated
protected OnRowUpdating ( RowUpdatingEventArgs value ) : void
value System.Data.Common.RowUpdatingEventArgs The event's specifics
return void

SqliteDataAdapter() public method

Default constructor.
public SqliteDataAdapter ( ) : System
return System

SqliteDataAdapter() public method

Constructs a data adapter using the specified select command.
public SqliteDataAdapter ( SqliteCommand cmd ) : System
cmd SqliteCommand The select command to associate with the adapter.
return System

SqliteDataAdapter() public method

Constructs a data adapter with the supplied select command text and associated with the specified connection.
public SqliteDataAdapter ( string commandText, SqliteConnection connection ) : System
commandText string The select command text to associate with the data adapter.
connection SqliteConnection The connection to associate with the select command.
return System

SqliteDataAdapter() public method

Constructs a data adapter with the specified select command text, and using the specified database connection string.
public SqliteDataAdapter ( string commandText, string connectionString ) : System
commandText string The select command text to use to construct a select command.
connectionString string A connection string suitable for passing to a new SqliteConnection, which is associated with the select command.
return System