D
divisortheory
I have a table that I want to run a query on, and I'd ideally like a
"live" view of the data, so that I can add, delete, or modify rows, and
that stuff shows up in the original table. Some more details about
what I want to do:
1) Data is only coming from one table
2) I might modify rows that are returned to me, as well as delete some
rows, or add new rows. I want all of this to be reflected into the
original table.
3) I don't necessarily need it to be live, perhaps a transaction based
thing where I modify everything locally and then just call some
function like dataThingy.Accept()
What is the easiest way to do this? I've been trying to dig through
the help files but there's so many classes and they're so confusing.
DataReader, DataAdapter, DataTable, DataSet, DataView. I don't know
what I need, but it seems like what I want to do should be really
simple in theory.
I appreciate any advice.
Sincerely,
Zachary Turner
"live" view of the data, so that I can add, delete, or modify rows, and
that stuff shows up in the original table. Some more details about
what I want to do:
1) Data is only coming from one table
2) I might modify rows that are returned to me, as well as delete some
rows, or add new rows. I want all of this to be reflected into the
original table.
3) I don't necessarily need it to be live, perhaps a transaction based
thing where I modify everything locally and then just call some
function like dataThingy.Accept()
What is the easiest way to do this? I've been trying to dig through
the help files but there's so many classes and they're so confusing.
DataReader, DataAdapter, DataTable, DataSet, DataView. I don't know
what I need, but it seems like what I want to do should be really
simple in theory.
I appreciate any advice.
Sincerely,
Zachary Turner