how much memory do datasets need?

  • Thread starter Thread starter Daniel
  • Start date Start date
D

Daniel

Hi all,

we want to use datasets on Pocket PC with SQLite and a total memory of
124,79MB.

Hence datasets are an in-memory-representation of a db, is it somehow
critical to use it on pocket pc?

Greetings
Daniel
 
I don't understand the question at all. Yes a DataSet is an in-memory
representation of data. It provides a simple object model for reading and
writing data from the DB. You don't have to use one - you can use direct
SQL if you wish, but it often provides benefits of simplicity and allows
data binding. Whether you should use it or not can only be answered by you.

--
Chris Tacke
Co-founder
OpenNETCF.org
Are you using the SDF? Let's do a case study.
Email us at d c s @ o p e n n e t c f . c o m
http://www.opennetcf.org/donate
 
Ah, ok. I think I did understand it as like a Dataset is the full
representation of the DB in memory. But of course it is just a part of
it!
 
Back
Top