Свойство | Type | Description |
---|
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éthode | Description | |
---|---|---|
OnRowUpdated ( |
Raised by DbDataAdapter after a row is updated
|
|
OnRowUpdating ( |
Raised by the underlying DbDataAdapter when a row is being updated
|
protected OnRowUpdated ( |
||
value | The event's specifics | |
Résultat | void |
protected OnRowUpdating ( |
||
value | The event's specifics | |
Résultat | void |
public SqliteDataAdapter ( SqliteCommand cmd ) : System | ||
cmd | SqliteCommand | The select command to associate with the adapter. |
Résultat | System |
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 |
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 |