DataAdapter in ADO.NET

This article has been excerpted from the book "A Programmer's Guide to ADO.NET in C#".
 
DataAdapter: Adapting to Your Environment
 
As you're seen in figure 5-1, a DataAdapter plays a vital role in ADO.NET architecture. It sits between a data source and a dataset and passes data from the data source to the dataset, and vice versa, with or without using commands. Now is the time you'll be using disconnected classes such as DataSet, DataTable, DataView, and DataViewManager to write Windows Forms and Web Forms-based interactive database GUI applications.
 
The DataAdapter class for all data providers comes from the DbDataAdapter class, which in turn comes from the DataAdapter class.
 
An application doesn't create an instance of the DbDataAdapter interface directly, but instead, it creates an instance of a class that inherits IdbDataAdapter and DBDataAdapter. As you can see from Figure 5-39, many data provider-specific classes implement IDbDataAdapter.
 
figure-.39.gif
 
Figure 5-39. Data Provider-specific classes implement IDbDataAdapter
 
The DataAdapter enables you to connect to a dataset and specify SQL strings for retrieving data from or writing data to a DataSet. As you've seen at the beginning of this article, a dataset represents in-memory cached data. An in-memory object frees you from the confines of the specifics of the database and allows you to deal with the data in memory. The DataAdapter serves as an intermediary between the database and the DataSet.
 
Constructing a DataAdapter Object
 
The DataAdapter constructor has many overloaded forms. You can create a constructor with no arguments, pass a Command object, pass a Command object with Connection object as arguments, or any combination of these. You can also specify a SQL statement as a string for querying a particular table or more than one table. You can also specify the connection string or a Connection object to connect to the database.
 
Listing 5-41 creates a connection, builds a SQL statement using the SELECT query, and passes the SQL string and the connection objects as SqlDataAdapter constructor arguments. I've been using in the previous examples.
 
Listing 5-41. Executing a SELECT statement using SqlDataAdapter
  1. string ConnectionString = "Integrated Security = SSPI;" + "Initial catalog = Northwind; " + " Data Source = localhost; ";  
  2. string SQL = "SELECT CustomerID, CompanyName FROM Customers";  
  3. SqlConenction conn = new SqlConnection(ConnectionString);  
  4.   
  5. // open the connection  
  6. conn.Open();  
  7.   
  8. // Create a SqlDataAdapter object  
  9. SqlDataAdapter adapter = new SqlDataAdapter(SQL, conn); 
As discussed earlier, there is no difference in creating OleDb, SQL, or ODBC data adapters. The only difference is the connection string. For example, the following code snippet shows you how to create an OleDbDataAdapter object.
 
Listing 5-42 uses the Access2000 Northwind database and accesses all records of the Orders table by using a SELECT *SQL query.
 
Listing 5-42. Executing a SELECT statement using OleDbDataAdapter
  1. // create a connection object  
  2. string ConnectionString = @ "Provider =Microsoft.Jet.OLEDB.4.0; " + "Data source = c:\\ Northwind.mdb";  
  3. string SQL = "SELECT * FROM orders";  
  4. OleDbConnection conn = new OleDbConnection(ConnectionString);  
  5.   
  6. // open the connection  
  7. conn.Open();  
  8.   
  9. // create an OleDbDataAdapter objecto  
  10. OleDbDataAdapter adapter = new OleDbDataAdapter(SQL, conn); 
You can also use DataAdapter's Command properties by using the Command object with OleDbDataAdapter. For example, the following code uses OleDbCommand to set the SelectCommand property of the data adapter. You can also see that OleDbDataAdapter has no arguments as its constructor:
  1. // Create an OleDbDataAdapter object  
  2. OleDbDataAdapter adapter = new OleDbDataAdapter();  
  3. adapter.SelectCommand = new OleDbCommand (SQL, conn); 

Conclusion

 
Hope this article would have helped you in understanding DataAdapter in ADO.NET. See my other articles on the website on ADO.NET.
 
adobook.jpg This essential guide to Microsoft's ADO.NET overviews C# then leads you toward a deeper understanding of ADO.NET.


Similar Articles
Mindcracker
Founded in 2003, Mindcracker is the authority in custom software development and innovation. We put best practices into action. We deliver solutions based on consumer and industry analysis.