Client Interfaces Guide > TIBCO ADO.NET 2020 Data Provider for TDV > Using ADO.NET
 
Using ADO.NET
This section provides a walk-through of writing data access code to TDV in ADO.NET.
 
Connecting from Code
See Establishing a Connection for the prerequisite information you need to deploy the provider and configure the connection to TDV. Connecting from Code shows how to connect with the classes CompositeConnection, CompositeConnectionStringBuilder, and, in ASP.NET, CompositeDataSource.
Discovering Schemas
You can use the classes detailed in Schema Discovery to discover the table schemas at run time. You can also query the available System Tables to retrieve schema information, data source information, and other data provider metadata.
Executing SQL
You can use native ADO.NET interfaces to execute data manipulation SQL to TDV: Querying with the DataReader and Querying with the DataAdapter provide code examples and guides to using native ADO.NET interfaces to access TDV data. Results can be processed from the DataTable instance filled or from the DataReader returned.
Updating the Data shows how to use the provider to update changes to a data set.
Connection Pooling
Instantiate pooled connections by configuring the connection string. See Connection Pooling to create and configure a pool.