What is the difference between a DataTable and a DataReader in ASP?
|
Banned
|
|
| 10May2012,11:04 | #1 |
|
What is the difference between a DataTable and a DataReader?
|
|
Go4Expert Member
|
|
| 30May2012,12:02 | #2 |
|
Quote:
Originally Posted by hireaspdeveloper on the other Hand DataTable fetches all the records when you call the Fill() function of the DataAdapter. It keeps the records in memory so that you can use it latter without been connected to the database..This is an Example of .NET Disconnected Architecture .. DataReader is lighter than DataTable. |

