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

Popular posts from this blog

mysql - BLOB/TEXT column 'value' used in key specification without a key length -

c# - Using Vici cool Storage with monodroid -

python - referencing a variable in another function? -