Quick Question - ADO in Access 97?

L

Leah

I have to down grade to fit the customer's environment. Can I use ADO
2.whatever in Access 97? Or should I go back to DAO?

Thanks for answers!


Leah
 
D

Douglas J Steele

Use it how?

I use ADO against SQL Server from Access 97 with no problems. However, I
don't feel it makes sense to use ADO against Jet databases (i.e. MDBs) in
any version.
 
L

Leah

I had an existing 2000 app that used recursion from one recordset to
populate a hierarchical view.

In DAO, this seems to be a bit of a challenge. I didn't write this code, so
I was just tasked to see if it could be done. And my DAO is rusty.

Just now, the decision has been made to strongly encourage the client to
upgrade to at least Access 2000. Saves me a lot of hassle.


Leah
 
D

Douglas J. Steele

The differences between ADO and DAO are pretty small. I can't imagine that
the code would have to be altered very much.
 
T

TC

Leah said:
I had an existing 2000 app that used recursion from one recordset to
populate a hierarchical view. In DAO, this seems to be a bit of a challenge.

Not really. I do it in one of my apps. It's just a straight recursive
procedure. It really doesn't make any difference what the data access
method is.

HTH,
TC (MVP Access)
http://tc2.atspace.com
 

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

Similar Threads


Top