Tagged Questions
2
votes
2answers
1k views
DataAdapter.Fill() behavior for row deleted at the data source
I'm using the DataSet/DataTable/DataAdapter architecture to mediate between the database and my model objects, which have their own backing (they aren't backed by a DataRow). I've got a DataAdapter ...
1
vote
0answers
35 views
Output Parameters used with update CASCADE issue, when using data adapters
I've manually created some data adapters – using the auto-generated ones is not viable due to version incompatibilities, for a dataset made of a number of tables with the usual mixture of PK, FK ...
0
votes
3answers
312 views
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 SQL table exists because of a manual import to SQL from the original Excel spreadsheet, has a ...