The DB2DataTable class extends the Devart.Common.DbDataTable class to provide a single object that can be used to access and update data from a data source. Actually, DB2DataTable replaces DB2Connection, DB2Command, DB2DataAdapter, and DB2CommandBuilder classes with all-in-one class. When a DB2DataTable object is created, the default values of its constituent parts are set to reasonable defaults, meaning that the programmer can create a single object and immediately use it to retrieve and manipulate data from a data source.
By using DB2DataTable you can avoid explicit creation of DB2Connection and DB2Command objects. When appropriate form of constructor is used, these objects are created automatically when you retrieve data from a data source. It allows you to cut down the size of the written code.
DB2DataTable allows you to automate loading of subsets of data either by selecting Devart.Common.DbTable.StartRecord and MaxRecords properties or by using Fill or FillPage methods that support passing parameter values into the query text.
The DB2DataTable class is designed to employ both connected and disconnected data access models. It also provides functionality for asynchronous fill operations.
The DB2DataTable class can be fully adjusted at design-time. You may retrieve data at design-time from a data source by setting Devart.Common.DbTable.Active property to true.
For more information on advanced features of DB2DataTable please refer to topic DB2DataTable Advanced Features.
This class supports cross-form data binding with the InterForm Technology.
System.Object
System.ComponentModel.MarshalByValueComponent
System.Data.DataTable
Devart.Common.DbDataTable
Devart.Data.DB2.DB2DataTable