C# Class Mono.Data.Sqlite.SqliteDataAdapter

Inheritance: System.Data.Common.DbDataAdapter
Afficher le fichier Open project: rubenv/tripod Class Usage Examples

Private Properties

Свойство Type Description

Méthodes publiques

Méthode 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.

Méthodes protégées

Méthode 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 méthode

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

OnRowUpdating() protected méthode

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
Résultat void

SqliteDataAdapter() public méthode

Default constructor.
public SqliteDataAdapter ( ) : System
Résultat System

SqliteDataAdapter() public méthode

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

SqliteDataAdapter() public méthode

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.
Résultat System

SqliteDataAdapter() public méthode

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.
Résultat System