Memory Consumption of a DataSet

R

Rohit

Does anybody know, in quantitative terms, what the memory utilization for a
DataSet object is?

Here are some numbers to help. Suppose we had the following data in a SQL
Server CE database table:

- 800 rows
- 6 columns (4 of which are varchar(50) and 2 are plain ints)

How much memory should a DataSet based on this table consume on a mobile
device?
 
K

Kevin Spencer

How much space does a balloon occupy? It depends on how much air is in the
balloon. The number of rows and columns in a DataTable does not affect the
amount of memory consumed by it nearly as much as the size of all the data
contained therein.

--
HTH,

Kevin Spencer
Chicken Salad Surgeon
Microsoft MVP
 
R

Rohit

I don't need an exact number. What I am looking for is a ballpark figure.
Will it be in the kilobytes or megabytes for example.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top