sql server 2005 - how to fill data set in C# using ado.net -
Hello Friends Any topic can tell how to fill a dataset in the C # or data table and What is a datadapter?
Assume that the connection is valid SqlConnection Object String Query String = "Select ClientID, DBO Customer's Name by Company"; SqlDataAdapter Adapter = New SqlDataAdapter (queryString, Connection); Dataset client = new dataset (); Adapter.Fill (customer, "customer");
Comments
Post a Comment