Board index » delphi » Fast Access To MS Access 200 w/o Jet Engine In ADO

Fast Access To MS Access 200 w/o Jet Engine In ADO

I am using ADO connections to a MS Access 2000 database and
Microsoft.Jet.OLEDB.4.0 as the provider.  My efforts have resulted in
painfully slow record updates/appends.  Is there a better provider out
there?  I have been waiting for a dbExpress solution, but I don't think it
is here yet.

Any help or suggestions would be greatly appreciated.

Rann

 

Re:Fast Access To MS Access 200 w/o Jet Engine In ADO


Microsoft.Jet.OLEDB.4.0 is fast provider. However ADO and TDataset slow it.
Look OLEDB Direct at http://www.oledbdirect.com. Example
CreateAndFillJetTable shows the real speed of this provider.

BTW, Microsoft.Jet.OLEDB.3.51 provider is faster but less powerfull.

Regards,
Vassiliev V.V.
http://www.oledbdirect.com

P.S. Microsoft.Jet.OLEDB.X.X provider is fastest way to work with Jet
(Access) databases for now.

P.S. 2 dbExpress will never be faster because of its internal structure - it
will update database using SQL statements and OLEDB let insert/change/delete
directly on server-side cursor.

"Rann" <r...@umn.edu> ???Y/???Y ????? ???Y??:
news:3ceba741_2@dnews...

Quote
> I am using ADO connections to a MS Access 2000 database and
> Microsoft.Jet.OLEDB.4.0 as the provider.  My efforts have resulted in
> painfully slow record updates/appends.  Is there a better provider out
> there?  I have been waiting for a dbExpress solution, but I don't think it
> is here yet.

> Any help or suggestions would be greatly appreciated.

> Rann

Other Threads