Be careful though Jon, yes you can have multiple SqlCeDataReaders open
on a single db connection with SQL CE and SQL Mobile, but they do eat
memory and should be closed and disposed of as soon as possible.
You can also have multiple connections to a SQL Mobile database
(which was not true in SQL CE)
-Darren
--
Darren Shaffer
..NET Compact Framework MVP
Principal Architect
Connected Innovation www.connectedinnovation.com
Interesting thing you say there about Memory... I've always assumed that
a reader is infact a low-memory class, using less than a DataTable for
example. Is this not the case? Is the only advantage of a DataReader speed?