System.Data.Common Namespace DataAdapter Class
Adds or refreshes rows in the specified DataSet to match those in the data source.
[ VB ]
MustOverride Public Function Fill ( _
ByVal dataSet As DataSet _
) As Integer
[ C# ]
public abstract int Fill (
DataSet dataSet
);
[ C++ ]
public: virtual int Fill (
DataSet* dataSet
) = 0;
[ JScript ]
public abstract function Fill (
dataSet : DataSet
) : int;
- dataSet
- A DataSet to fill with records and, if necessary, schema.
An integer specifying the number of rows successfully added to or refreshed in the DataSet. This does not include rows affected by statements that do not return rows.
The Fill method retrieves rows from the data source using the SELECT statement specified by an associated SelectCommand property. The connection object associated with the SELECT statement must be valid, but it does not need to be open. If the connection is closed before Fill is called, it is opened to retrieve data, then closed. If the connection is open before Fill is called, it remains open.
The Fill operation then adds the rows to destination DataTable objects in the DataSet, creating the DataTable objects if they do not already exist. When creating DataTable objects, the Fill operation normally initializes only column name metadata. However, if the MissingSchemaAction property is set to AddWithKey, appropriate primary keys and constraints are also created.
If the data adapter encounters duplicate columns while populating a DataTable, it generates names for the subsequent columns, using the pattern "columnname1", "columnname2", "columnname3", and so on. If the incoming data contains unnamed columns, they are placed in the DataSet according to the pattern "Column1", "Column2", and so on. When multiple result sets are added to the DataSet each result set is placed in a separate table. Additional result sets are named by appending integral values to the specified table name ( for example, "Table", "Table1", "Table2", and so on. ). Applications should use caution when using column and table names to ensure that no naming conflict occurs.
You can use the Fill method multiple times on the same DataTable. If a primary key exists, incoming rows are merged with matching rows that already exist. If no primary key exists, incoming rows are appended to the DataTable.
NOTE: When handling batch SQL statements that return multiple results, the implementation of FillSchema for the OLE DB .NET Data Provider retrieves schema information for only the first result. To retrieve schema information for multiple results, use Fill with the MissingSchemaAction set to AddWithKey.
The following example shows using a derived class, an SqlDataAdapter, to fill a DataSet with records retrieved from a data source. Here, the entire logic is encapsulated within a Page_Load event handler that essentially:
- establishes a connection to the database,
- initializes an instance of a DataSet to contain the database information,
- and then enumerates the contents of the DataSet into an HTML table.
string html;
protected void Page_Load ( Object Src, EventArgs e ) {
// set up the connection
SqlConnection myConn = new SqlConnection (
"server=localhost; trusted_connection=yes; database=northwind" );
// set up the query
SqlDataAdapter myAdapter = new SqlDataAdapter ( "SELECT * FROM Customers", myConn );
// instantiate dataset object
DataSet myData = new DataSet ( );
// fill with query results
myAdapter.Fill ( myData, "Customers" );
// display dataset contents into html table
// first open the table and set up the table headers
html += "<table cellspacing=1 class='data' width=80%>";
html += "<tr>";
html += "<th>Customer ID</th>";
html += "<th>Company Name</th>";
html += "</tr>";
// loop thru the dataset
foreach ( DataRow Customer in myData.Tables [ "Customers" ].Rows ) {
html += "<tr>";
html += "<td>" + Customer [ "CustomerID" ].ToString ( ) + "</td>";
html += "<td>" + Customer [ "CompanyName" ].ToString ( ) + "</td>";
html += "</tr>";
}
// close the table
html += "</table>";
}
dim html as string
protected sub Page_Load ( byVal Src as Object, byVal E as EventArgs ) {
' set up the connection
dim myConn as new SqlConnection (
"server=localhost; trusted_connection=yes; database=northwind" )
' set up the query
dim myAdapter as new SqlDataAdapter ( "SELECT * FROM Customers", myConn )
' instantiate dataset object
dim myData as new DataSet ( )
' fill with query results
myAdapter.Fill ( myData, "Customers" )
' display dataset contents into html table
' first open the table and set up the table headers
html &= "<table cellspacing=1 class='data' width=80%>"
html &= "<tr>"
html &= "<th>Customer ID</th>"
html &= "<th>Company Name</th>"
html &= "</tr>"
' loop thru the dataset
foreach Customer as DataRow in myData.Tables ( "Customers" ).Rows
html &= "<tr>"
html &= "<td>" & Customer ( "CustomerID" ).ToString ( ) & "</td>"
html &= "<td>" & Customer ( "CompanyName" ).ToString ( ) & "</td>"
html &= "</tr>"
next
' close the table
html &= "</table>"
end sub |
|
C# |
VB |
Show me
DataAdapter Members FillSchema