K
Keld Laursen
Hi all.
I am currently porting an old eVB program to .NET. (Well, i am rewriting the
program... )
I am a little curious about performance of data access (especially selects),
so I would like to hear what others have found.
(I just read the thread about insert performance, but it isn't really my
problem as I will do quite a lot of selects, but only occational
inserts/updates, and never bulk inserts/updates).
My old program were using Pocket Access tables, and in order to get on the
road fast, we decided to stick to those for the time being.
In order to access these, we bought a copy of Peter Foots AdoCE InTheHand.
Trying out a couple of things, we found that selects work quite fast, but
that we have a bottlenect in getting data out of the resulting dataset.
We tried data adapters, recordsets etc., but ended up with reading directly
form the InTheHand.Data.Adoce.FieldCollection.
From that we could get a field value within 4 mSec (on our test machine).
But getting 10 values per record, and, say 10 records to a dataset, this
adds up to nearly half a second.
Do any of you have any experience with AdoCE InTheHand? What is your
experience with regards to speed?
Alternatively? What can I expect from SSCE with regards to speed?
(Example: Get 10 records with 10 fields from a single table with, say 100
records in it?)
We want to populate an object tree model using the data we select, and these
data will in turn be used populate a grid and a treeview.
TIA
Keld Laursen
I am currently porting an old eVB program to .NET. (Well, i am rewriting the
program... )
I am a little curious about performance of data access (especially selects),
so I would like to hear what others have found.
(I just read the thread about insert performance, but it isn't really my
problem as I will do quite a lot of selects, but only occational
inserts/updates, and never bulk inserts/updates).
My old program were using Pocket Access tables, and in order to get on the
road fast, we decided to stick to those for the time being.
In order to access these, we bought a copy of Peter Foots AdoCE InTheHand.
Trying out a couple of things, we found that selects work quite fast, but
that we have a bottlenect in getting data out of the resulting dataset.
We tried data adapters, recordsets etc., but ended up with reading directly
form the InTheHand.Data.Adoce.FieldCollection.
From that we could get a field value within 4 mSec (on our test machine).
But getting 10 values per record, and, say 10 records to a dataset, this
adds up to nearly half a second.
Do any of you have any experience with AdoCE InTheHand? What is your
experience with regards to speed?
Alternatively? What can I expect from SSCE with regards to speed?
(Example: Get 10 records with 10 fields from a single table with, say 100
records in it?)
We want to populate an object tree model using the data we select, and these
data will in turn be used populate a grid and a treeview.
TIA
Keld Laursen