Top "Dataadapter" questions

DataAdapter is a .Net framework class that facilitates communication between a DataTable and a database.

How to use a DataAdapter with stored procedure and parameter

I want to fill a DataGridView control using DataAdapter. But I don't know how to do it since I'm using …

c# stored-procedures dataadapter
C# - Using DataAdapter to Update SQL table from a DataTable -> SQL table not updating

I select * from an Excel spreadsheet into dt. I want to take those values and update the SQL table. (the …

c# dataadapter rowstate
DataAdapter.Update() does not Update the Database

I'm sure there is an extremely simple reason that this one line isn't working, but it has evaded for the …

c# database dataadapter
Refresh datagridview win forms after updating the database from a child form

how to refresh datagridview after making changes on the database from another form, after closing child form i tried to …

c# datagridview dataset dataadapter
C# DataAdapter and DataSet with multiple table

I have read from many places that it is possible to fill a DataSet with multiple tables using a DataAdapter. …

c# dataset dataadapter
Update database with changes made to DataTable... confusion

If I fill a DataTable with DataAdapter.Fill(DataTable); and then make changes to a row in the DataTable with …

c# datatable dataadapter
Android - What does adapter.notifyDataSetInvalidated do?

What does the method adapter.notifyDataSetInvalidated() accomplish? There is no documentation on it. I am trying to reload a ListView …

android dataadapter
SqlDataAdapter.Fill() Timeout - Underlying Sproc Returns Quickly

I have a SqlDataAdapter that is being populated with 21 rows of data (4 columns). The sproc that drives it returns in …

sql timeout dataadapter fill
calling a stored procedure from C# using SqlDataAdapter

I have a stored procedure which has been well tested and works perfectly from SQL Server Management Studio. All the …

c# sql dataadapter
Concurrency violation: the UpdateCommand affected 0 of the expected 1 records. DB concurrencyException was unhandled

i have defined 2 datasets and 2 dataAdapters( one for each of the datasets ) . after creating, for each of the 2 dataAdapters i …

c# sql-server dataadapter sqlcommandbuilder