It is a really underpowered database - so don't go putting millions of rows
in it.
Other ways to browse data in a dataset are DataTable.Select, Find, Relations
(GetChildRows, GetParentRow). etc.
And instead of complete flush and reload, you could instead do a
dataset.merge.
- Sahil Malik
http://codebetter.com/blogs/sahil.malik/
"Mike Peretz" <(E-Mail Removed)> wrote in message
news:MZDLd.4773$(E-Mail Removed)...
>I would like to use a dataset as a data file (like a database). However, I
> didn't find a way to use SQL on the Dataset (except on a DataView, but
> then
> Dataset is all loaded.). I also noted that I must flush the whole dataset
> to
> disk and load it all to read it. I wonder, if there is a better way to use
> a
> dataset as a persistent storage.
>
>