|
Question : datarow and datarowview difference ?
|
|
I am still confuse about datarow and datarowview in ADO.NET Is there anybody can tell me which one is better for - Find single record - Select records - Updating, adding new records, and deletion - databinding ( textbox and datagrid ) - Data access speed What is the differences, there must be something specific in application. I am still new in the .NET. Thanks in advance
|
|
Answer : datarow and datarowview difference ?
|
|
that's right Julianto ....only difference lies between datarow and datarowview is that of level of customization.
and this customization comes at the cost of atleast one overhead (i.e. creation of dataview) while using DataRowView because datarowView works with dataview which in turn is instantiated using dataTable of a dataset...whereas datarow works directly on datatable(which is in-memory data) which need not be instantiated (it comes as property collection of Dataset).
enjoy...
|
|
|