Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
1
vote
2answers
299 views

Preserving DataRowState when serializing DataSet using DataContractSerializer

For various reasons I am having to send a typed dataset to a WCF service endpoint. This works fine except that upon Deserializing, the RowState of each row in each DataTable is set to 'Added', ...
0
votes
1answer
45 views

Gridview adding row dynamically on RowDataBound with the same RowState (Alternate or Normal)

I am adding rows dynamically on code behind depending on the Row currently bounded on RowDataBound event. I want that added row to be the same state (Alternate or Normal) of the currently bounded row ...
0
votes
0answers
27 views

dynamics ax 2012: Change RowState from Edit to Selected

In AXGridView, I want to change the row state of selected row, which is in edit mode to selected mode. This needs to happen on clicking an external button. I tried the following ways: Updated the ...
0
votes
3answers
306 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 ...
0
votes
1answer
222 views

Check if row is new in CollectionViewSource

I have a CollectionViewSource (cvs) which has strongly typed DataTable as it's source. Cvs.View is set as DataGrid's ItemsSource. I want to update, insert and delete data from a database based on ...
0
votes
7answers
1k views

How to delete all rows from datatable

I want to delete all rows from datatable with rowstate property value Deleted. DataTable dt; dt.Clear(); // this will not set rowstate property to delete. Currently I am iterating through all rows ...
0
votes
2answers
234 views

If GridViewRow is Selected Then … Else

Ok, this seems like it should be very easy to do, however I can't seem to work without erroring out. I have an IfThen Statement that states if a row is selected, then execute, else, display message. ...
0
votes
1answer
57 views

DataRow which is added is not going to be delete doing table.Rows[i].Delete()?

Why is that? The state of the datarow is added. When I delete the row the state is unchanged. Why not deleted? Thats the reason my Delete Store Procedure is never called! edit: the datarow is freshly ...
0
votes
2answers
750 views

Maintain DataRowState in ADO.NET Dataset - RejectChanges() method does not work?

The problem simplified: I have a DataSet with some datatables... I have a Winforms DataGrid bound to one of the datatables. User sticks some rows into said datatable, via the DataGrid, let's say 3 ...
0
votes
1answer
757 views

Issue with DataRow state in DataTable

I have a very strange requirement using DataTable. I have a datatable with some columns. Nwo whenever there is any change in any of the DataRow in the datatable; then the state of DataRow is set to ...