Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 10.0.1 » UltraLite - .NET Programming » UltraLite .NET 1.0 API Reference » ULDataAdapter class

ULDataAdapter class Next Page

ULDataAdapter members


Public constructors
Member nameDescription
ULDataAdapter constructor

Initializes a ULDataAdapter object.

ULDataAdapter constructor

Initializes a ULDataAdapter object with the specified SELECT statement.

ULDataAdapter constructor

Initializes a ULDataAdapter object with the specified SELECT statement and connection.

ULDataAdapter constructor

Initializes a ULDataAdapter object with the specified SELECT statement and connection string.

Public properties
Member nameDescription
AcceptChangesDuringFill property

Specifies whether System.Data.DataRow.AcceptChanges is called on a System.Data.DataRow after it is added to the System.Data.DataTable class.

ContinueUpdateOnError property

Specifies whether to generate an exception when an error is encountered during a row update.

DeleteCommand property

Specifies a ULCommand object that is executed against the database when DbDataAdapter.Update(System.Data.DataSet) is called to delete rows in the database that correspond to deleted rows in the System.Data.DataSet.

InsertCommand property

Specifies a ULCommand object that is executed against the database when DbDataAdapter.Update(System.Data.DataSet) is called to insert rows in the database that correspond to inserted rows in the System.Data.DataSet.

MissingMappingAction property

Determines the action to take when incoming data does not have a matching table or column.

MissingSchemaAction property

Determines the action to take when the existing System.Data.DataSet schema does not match incoming data.

SelectCommand property

Specifies a ULCommand that is used during ULDataAdapter.Fill(System.Data.DataSet) or ULDataAdapter.FillSchema(System.Data.DataSet,System.Data.SchemaType) to obtain a result set from the database for copying into a System.Data.DataSet.

TableMappings property

Returns a collection that provides the master mapping between a source table and a System.Data.DataTable

UpdateCommand property

Specifies a ULCommand object that is executed against the database when ULDataAdapter.Update(System.Data.DataSet) is called to update rows in the database that correspond to updated rows in the System.Data.DataSet.

Public methods
Member nameDescription
Fill method

Fill method

Adds or refreshes rows into the named System.Data.DataTable of the specified System.Data.DataSet. The System.Data.DataTable named is created and added to the System.Data.DataSet if neccessary.

Fill method

Adds or refreshes the specified range of rows into the named System.Data.DataTable of the specified System.Data.DataSet. The System.Data.DataTable named is created and added to the System.Data.DataSet if neccessary.

Fill method

Adds or refreshes rows into the specified System.Data.DataTable.

FillSchema method

Adds a System.Data.DataTable named "Table" to a System.Data.DataSet and configures the schema to match the schema in the data source.

FillSchema method

Adds a System.Data.DataTable named "Table" to a System.Data.DataSet and configures the schema to match the schema in the data source.

FillSchema method

Configures the schema of a System.Data.DataTable to match the schema in the data source.

GetFillParameters method

Returns the parameters set by the user when executing a SELECT statement.

Update method

Updates the rows in the database with the changes made to the System.Data.DataTable named "Table" of the specified System.Data.DataSet.

Update method

Updates the rows in the database with the changes made to the named System.Data.DataTable of the specified System.Data.DataSet.

Update method

Updates the rows in the database with the changes made to the specified System.Data.DataTable.

Update method

Updates the rows in the database with the changes made to the specified System.Data.DataRow array.

Public events
Member nameDescription
FillError event

Occurs when an error is detected during a fill operation.

RowUpdated event

Occurs during an update after a command is executed against the data source. When an attempt to update is made, the event fires.

RowUpdating event

Occurs during an update before a command is executed against the data source. When an attempt to update is made, the event fires.