Client Interfaces Guide > TIBCO ADO.NET 2020 Data Provider for TDV > Using ADO.NET > Using the CompositeDataSource
 
Using the CompositeDataSource
The CompositeDataSource enables you to use a single Web control to connect to TDV and query data. By binding the control to other controls such as the GridView or ListBox, you can display, edit, and save TDV data in an ASP.NET page. You can use the Visual Studio Designer to initialize the control, visually build queries, and bind controls; you can also define SQL commands from page code. The examples below show both approaches and use the GridView control as an example.
 
To use the CompositeDataSource, add a reference to System.Data.CompositeClient.Web.dll in your ASP.NET project.
 
Bind Data Programmatically
The following example shows how to bind the results of a TDV query to an ASP.NET data grid. After registering the assembly for use with the CompositeDataSource, set the DataSourceID field of the GridView control to the Id of the CompositeDataSource control:
 
<%@ Register Assembly="System.Data.CompositeClient.Web" Namespace="System.Data.CompositeClient" TagPrefix="cc1" %>
...
<cc1:CompositeDataSource ID="CompositeDataSource1" runat="server" ConnectionString="Host=myHost;Domain=myDomain;DataSource=myDataSource;User=myUser;Password=myPassword" SelectCommand="SELECT * FROM Products WHERE ProductName = 'Konbu' LIMIT 10"></cc1:CompositeDataSource>
<asp:GridView DataSourceID="CompositeDataSource1" runat="server"></asp:GridView>
Bind Data Using the Designer
Complete the following steps to use the Designer in Visual Studio to bind the CompositeDataSource to a GridView control:
Drag a GridView from the Toolbox onto the page.
Click the Smart Tag of the GridView.
Choose the option to create a new data source, which launches a wizard to configure the control.
On the first page, select a connection string from the menu or click New Connection to define a new connection or to save a connection entry in the Web.config file.
On the next page, select the option to define a SQL statement or visually build the query.
When you exit the wizard, the GridView displays the columns of the result set.