C# 클래스 Community.CsharpSqlite.SQLiteClient.SqliteDataAdapter

Represents a set of data commands and a database connection that are used to fill the DataSet and update the data source.
상속: System.Data.Common.DbDataAdapter, IDbDataAdapter
파일 보기 프로젝트 열기: koush/csharp-sqlite 1 사용 예제들

공개 메소드들

메소드 설명
SqliteDataAdapter ( ) : System

Initializes a new instance of the SqliteDataAdapter class.

SqliteDataAdapter ( DbCommand selectCommand ) : System

Initializes a new instance of the SqliteDataAdapter class with the specified SqliteCommand as the SelectCommand property.

SqliteDataAdapter ( IDbCommand selectCommand ) : System
SqliteDataAdapter ( string selectCommandText, Community.CsharpSqlite.SQLiteClient.SqliteConnection connection ) : System

Initializes a new instance of the SqliteDataAdapter class with a SelectCommand and a SqliteConnection object.

SqliteDataAdapter ( string selectCommandText, string connectionString ) : System

Initializes a new instance of the SqliteDataAdapter class with a SelectCommand and a connection string.

보호된 메소드들

메소드 설명
CreateRowUpdatedEvent ( DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping ) : RowUpdatedEventArgs

Initializes a new instance of the RowUpdatedEventArgs class.

CreateRowUpdatingEvent ( DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping ) : RowUpdatingEventArgs

OnRowUpdated ( RowUpdatedEventArgs args ) : void

Raises the RowUpdating event of Sqlite data provider.

OnRowUpdating ( RowUpdatingEventArgs args ) : void

Raises the RowUpdated event of a Sqlite data provider.

메소드 상세

CreateRowUpdatedEvent() 보호된 메소드

Initializes a new instance of the RowUpdatedEventArgs class.
protected CreateRowUpdatedEvent ( DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping ) : RowUpdatedEventArgs
dataRow System.Data.DataRow The DataRow used to update the data source.
command IDbCommand The IDbCommand executed during the Update.
statementType StatementType Whether the command is an UPDATE, INSERT, DELETE, or SELECT statement.
tableMapping System.Data.Common.DataTableMapping A DataTableMapping object.
리턴 System.Data.Common.RowUpdatedEventArgs

CreateRowUpdatingEvent() 보호된 메소드

protected CreateRowUpdatingEvent ( DataRow dataRow, IDbCommand command, StatementType statementType, DataTableMapping tableMapping ) : RowUpdatingEventArgs
dataRow System.Data.DataRow The DataRow used to update the data source.
command IDbCommand The IDbCommand executed during the Update.
statementType StatementType Whether the command is an UPDATE, INSERT, DELETE, or SELECT statement.
tableMapping System.Data.Common.DataTableMapping A DataTableMapping object.
리턴 System.Data.Common.RowUpdatingEventArgs

OnRowUpdated() 보호된 메소드

Raises the RowUpdating event of Sqlite data provider.
protected OnRowUpdated ( RowUpdatedEventArgs args ) : void
args System.Data.Common.RowUpdatedEventArgs An RowUpdatingEventArgs that contains the event data.
리턴 void

OnRowUpdating() 보호된 메소드

Raises the RowUpdated event of a Sqlite data provider.
protected OnRowUpdating ( RowUpdatingEventArgs args ) : void
args System.Data.Common.RowUpdatingEventArgs A RowUpdatedEventArgs that contains the event data.
리턴 void

SqliteDataAdapter() 공개 메소드

Initializes a new instance of the SqliteDataAdapter class.
public SqliteDataAdapter ( ) : System
리턴 System

SqliteDataAdapter() 공개 메소드

Initializes a new instance of the SqliteDataAdapter class with the specified SqliteCommand as the SelectCommand property.
public SqliteDataAdapter ( DbCommand selectCommand ) : System
selectCommand System.Data.Common.DbCommand
리턴 System

SqliteDataAdapter() 공개 메소드

public SqliteDataAdapter ( IDbCommand selectCommand ) : System
selectCommand IDbCommand
리턴 System

SqliteDataAdapter() 공개 메소드

Initializes a new instance of the SqliteDataAdapter class with a SelectCommand and a SqliteConnection object.
public SqliteDataAdapter ( string selectCommandText, Community.CsharpSqlite.SQLiteClient.SqliteConnection connection ) : System
selectCommandText string
connection Community.CsharpSqlite.SQLiteClient.SqliteConnection
리턴 System

SqliteDataAdapter() 공개 메소드

Initializes a new instance of the SqliteDataAdapter class with a SelectCommand and a connection string.
public SqliteDataAdapter ( string selectCommandText, string connectionString ) : System
selectCommandText string
connectionString string
리턴 System