Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Do I need Access 2000 and + installed 2

Status
Not open for further replies.

JFRobishow

Technical User
Jun 18, 2003
87
CA
Hi everyone,

I'm currently working on a small application that use a MS Access 2000 database. It's working ok on my box which have MS Access XP installed, OS is WinXP.

Eventualy (when it's ready) it will be deployed on other machine, which are likely to have Win98 on them with at most Access 97 installed (there are possibilities that it wouldn't be)

I'm wondering before I start rolling up some code to handle two different types of database if it's needed?

Will my app. work even if Access isn't installed on the target machine? Will it work if at least Access 97 is installed?

Thanks in advance for your answers/suggestions.
 
If you are using the Access 2K as a front end then you will need to install it on all machines. If you are just using the Jet4 database (as used by Access2K) as a backend database accessed via ADO then just include the appropriate MDAC references.

________________________________________________________________
If you want to get the best response to a question, please check out FAQ222-2244 first

'If we're supposed to work in Hex, why have we only got A fingers?'
 
Hi,

Thanks to both of you for your answers. My applications create the database itself through code. I connect to it using Microsoft Jet OLEDB 4.0 provider, so it's only backend right? sorry english isn't my first language so I wanted to make sure that I had the terms right.

I only do normal operation provided via ADO after I'm connected (create table, drop, update, query, etc)

The users never actually open the database on their machine (in Access), they access it through the application GUI only.

So it should work w/o Access 2000 then, it only need the MDAC reference?
 
IF you are not using Access forms and code for it then yes only the MDAC.

For what you said I expect you to be using VB + ADO, so you're fine.


I would still try it out, by installing your app on a machine without any access components installed.
e.g. either use something like VMWARE or MS Virtual PC to create a brand new install of Wxx, or install the OS on a new HD.

Install the MDAC (2.7 or 2.8).
Then try your app and see if it works.

Regards

Frederico Fonseca
SysSoft Integrated Ltd
 
Thanks frederic and johnwm for your time and answer. I'll test that soon, I'll just install a fresh Windows 98 on a secondary HD and boot to it.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top