What are the different row versions available?
Answers were Sorted based on User's Feedback
Answer / swapna
There are four types of Rowversions.
Current:
The current values for the row. This row version does not
exist for rows with a RowState of Deleted.
Default :
The row the default version for the current DataRowState.
For a DataRowState value of Added, Modified or Current, the
default version is Current. For a DataRowState of Deleted,
the version is Original. For a DataRowState value of
Detached, the version is Proposed.
Original:
The row contains its original values.
Proposed:
The proposed values for the row. This row version exists
during an edit operation on a row, or for a row that is not
part of a DataRowCollection.
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ravindarjobs
have a look at this link
http://msdn2.microsoft.com/en-us/library/ww3k31w0.aspx
Is This Answer Correct ? | 3 Yes | 0 No |
Answer / 1647264
There are four types of Rowversions.
Current:
The current values for the row. This row version does not exist for rows with a RowState of Deleted.
Default :
The row the default version for the current DataRowState. For a DataRowState value of Added, Modified or Current, the default version is Current. For a DataRowState of Deleted, the version is Original. For a DataRowState value of Detached, the version is Proposed.
Original:
The row contains its original values.
Proposed:
The proposed values for the row. This row version exists during an edit operation on a row, or for a row that is not part of a DataRowCollection
Is This Answer Correct ? | 0 Yes | 0 No |
What are the attirbutes of DataSet?
Explain how to find the given query is optimised one or not?
What is ADO .NET and what is difference between ADO and ADO.NET?
How can I retrieve two tables of data at a time by using data reader?
Explain different methods and Properties of DataReader which you have used in your project?
What are ado.net objects?
How to insert multiple records in asp .net from Gridview to Sql Database with out using loop condition ?
What is ado.net code?
What is isolation?
What is the difference between an ADO.NET Dataset and an ADO Recordset?
What is row state?
I loaded the dataset with a table of 10 records. One of the records is deleted from the backend, how do you check whether all the 10 records were present while updating the data(which event and steps) and throw the exception 28 can datareader hold data from multiple tables?