Read MS Access

  • Thread starter Thread starter S Chapman
  • Start date Start date
S

S Chapman

What is the quickest way to read Microsoft Access Tables? Right now I
am using OleDBCommand in C# to read Access but I was wondering if
there is a quicker way of reading the contents of Access Tables? Thank
you.


PS: quicker as in better performance.
 
S said:
What is the quickest way to read Microsoft Access Tables? Right now I
am using OleDBCommand in C# to read Access but I was wondering if
there is a quicker way of reading the contents of Access Tables? Thank
you.

I don't think so.

The only two providers capable of reading MDB's are OleDb and Odbc.

I am pretty sure that OleDB is faster than Odbc.

All other data access methods build on top of one of those and can
therefor not be faster.

Arne
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top