M
Morgan
Thanks for any insight in advance.
Using the MS Building Blocks for Data Access in an ASP.Net app, I have a
couple of questions.
In theory, via the browser, a user will never be working with more than a
single record at any given time, so why use DataSets for DB access? I am
accessing the data via a middle-tier and passing objects to the web app,
thus losing all benefit of using the DataSet.
Given this theory, I am considering shifting to the SQLDataReader for
read-only data access, to reduce the overhead of having to process DataSets
in the middle-tier. Are there any reasons why this would not work or be a
viable solution?
For Add/Update/Delete operations, I have seperate methods that get called in
the middle-tier using Stored Procedures.
Thanks,
Morgan
Using the MS Building Blocks for Data Access in an ASP.Net app, I have a
couple of questions.
In theory, via the browser, a user will never be working with more than a
single record at any given time, so why use DataSets for DB access? I am
accessing the data via a middle-tier and passing objects to the web app,
thus losing all benefit of using the DataSet.
Given this theory, I am considering shifting to the SQLDataReader for
read-only data access, to reduce the overhead of having to process DataSets
in the middle-tier. Are there any reasons why this would not work or be a
viable solution?
For Add/Update/Delete operations, I have seperate methods that get called in
the middle-tier using Stored Procedures.
Thanks,
Morgan