| Devart.Data.SQLite Namespace : SQLiteCommandBuilder Class |
Automatically generates single-table commands used to reconcile changes made to a
For a list of all members of this type, see SQLiteCommandBuilder members.
Devart.Common.DbCommandBuilderBase
Devart.Common.DbCommandBuilder
Devart.Data.SQLite.SQLiteCommandBuilder
[Visual Basic]
Public Class SQLiteCommandBuilder
Inherits DbCommandBuilder[C#]
public class SQLiteCommandBuilder : DbCommandBuilderThe SQLiteDataAdapter does not automatically generate the SQL statements required to reconcile changes made to a
The relationship between a SQLiteDataAdapter and its corresponding SQLiteCommandBuilder is always one-to-one. To create this correspondence, you set the DataAdapter property of the SQLiteCommandBuilder object. This causes the SQLiteCommandBuilder to register itself as a listener, which produces the output of SQLiteDataAdapter.RowUpdating events that affect the
To generate INSERT, UPDATE, or DELETE statements, the SQLiteCommandBuilder uses the SQLiteDataAdapter.SelectCommand property to retrieve a required set of metadata. If you change the value of SQLiteDataAdapter.SelectCommand after the metadata has been retrieved (for example, after the first update), you then should call the Devart.Common.DbCommandBuilderBase.RefreshSchema method to update the metadata.
The SQLiteCommandBuilder also uses the Connection, Devart.Common.DbCommandBase.CommandTimeout, and Transaction properties referenced by the SQLiteDataAdapter.SelectCommand. The user should call Devart.Common.DbCommandBuilderBase.RefreshSchema if any of these properties are modified, or value of the SQLiteDataAdapter.SelectCommand property itself is changed. Otherwise the SQLiteDataAdapter.InsertCommand, SQLiteDataAdapter.UpdateCommand, and SQLiteDataAdapter.DeleteCommand properties retain their previous values.
If you assign null to corresponding property of SQLiteDataAdapter, the SQLiteCommandBuilder will be disassociated from the SQLiteDataAdapter, and the generated commands will no longer be used.
The following example uses SQLiteCommand, along with SQLiteDataAdapter and SQLiteConnection, to select rows from a SQLite database. The example is passed an initialized
[C#]
public DataSet SelectSQLiteSrvRows(DataSet myDataSet,string sqConnection,string mySelectQuery,string myTableName)
{
SQLiteConnection myConn = new SQLiteConnection(sqConnection);
SQLiteDataAdapter myDataAdapter = new SQLiteDataAdapter();
myDataAdapter.SelectCommand = new SQLiteCommand(mySelectQuery, myConn);
SQLiteCommandBuilder sqCommandBuilder = new SQLiteCommandBuilder(myDataAdapter);
myConn.Open();
DataSet myDataSet = new DataSet();
myDataAdapter.Fill(myDataSet, "Departments");
//code to modify data in dataset here
//Without the SQLiteCommandBuilder this line would fail
myDataAdapter.Update(myDataSet, "Departments");
myConn.Close();
return myDataSet;
} [Visual Basic]
Public Function SelectSQLiteSrvRows(myDataSet As DataSet, sqConnection As String, mySelectQuery As String, myTableName As String) As DataSet
Dim myConn As New SQLiteConnection(sqConnection)
Dim myDataAdapter As New SQLiteDataAdapter()
myDataAdapter.SelectCommand = New SQLiteCommand(mySelectQuery, myConn)
Dim sqCommandBuilder As SQLiteCommandBuilder = New SQLiteCommandBuilder(myDataAdapter)
myConn.Open()
Dim myDataSet As DataSet = New DataSet
myDataAdapter.Fill(myDataSet, "Departments")
' Code to modify data in DataSet here
' Without the SQLiteCommandBuilder this line would fail.
myDataAdapter.Update(myDataSet, "Departments")
myConn.Close()
SelectSQLiteSrvRows = myDataSet
End FunctionSQLiteCommandBuilder Members | Devart.Data.SQLite Namespace | SQLiteDataAdapter Class | SQLiteConnection Class | SQLiteCommand Class
© 2002 - 2013 Devart. All Rights Reserved.