Open access databases without office

  • Thread starter Thread starter chris
  • Start date Start date
C

chris

Hallo everybody,

I've developed a small windows forms application using C# , this application
store some data in an Access 2000 database. How can I ensure that my
application will work well on any computer even without Office 2000 ?

Should I include with it "Jet 4.0 Service Pack 7" , "MDAC" or something else
?

Thanks in advance
 
Do the all have some version of Access?

The best way is to get the developer's version of Access and you will be
able to produce a product that anyone, even without Access will be able to
use.
 
I believe you'll need the most current MDAC.

I don't know the details of distributing applications and supporting DLLs in
the .NET environment.
 
Do the all have some version of Access?

In fact, they don't need _any_ version of _Access_. He said his application
was written in C# and used an "Access database", which really means a "Jet
database". I'd guess that ADO.NET was used to do the Jet database
operations.

In any case, it's a question better asked in a C# newsgroup that deals with
database operations.
 
Hello !

Following is a quote from MDAC 2.8 release manifest:
The Microsoft Jet OLE DB Provider and other related components
were removed from MDAC 2.6. Microsoft has deprecated the Microsoft
Jet Engine, and plans no new releases or service packs for this component.
As a result, the Jet and Replication Objects (JRO) is being deprecated in
this release and will not be available in any future MDAC releases.

Regards,
Dmitry

===========================================
Dmitry L. Arefiev, director of gs-soft.ru ltd.
Solutions for successful companies

ICQ: 50741007
EMail: (e-mail address removed)
Company: http://www.gs-soft.ru
 
Thanks, Dmitry. I thought that position had later been modified by
Microsoft, but it appears that I was wrong. In view of this statement, the
MDAC needed is MDAC 2.5.

I can tell you that a lot of people are still trying to convince Microsoft
that Jet should be resuscitated and brought back to life. I am under the
impression that, despite the warning of no more service packs, there have
been at least one, perhaps more, service packs since that decision was made
when MDAC 2.6 was released, and there has been talk of a SP 8 to be made
available around the official release data of Office 2003. (None of the
preceding is "secret" or "inside" information, of course. It has all been
published in one place or another.)

Microsoft's "deprecation" of OLE DB support for Jet seemed to coincide with
classic ADO being replaced in their thoughts with ADO.NET which uses a
different object model, and which is the access method of choice in .NET.
But Office 2003 and the next version of Office have been stated to continue
to support Jet.

Microsoft's "deprecation" of Jet itself didn't make sense to me until I read
(again, published information) that the Operating System release codenamed
Longhorn would have a file system based on SQL Server. That would mean that
the user would not, as now, have to separately install MSDE. Just how
user-friendly for novice and casual users it would be to create end-user
databases that access SQL-Server-like files, I couldn't guess, but in my
observation, it's very, very easy for them to do so with Access and the
automatically-installed, automatically-used Jet database engine.
 
Thank you all for your response

I've checked a lot of technical articles on MSDN and TechNet and found that
to be able to run and ADO.NET application you have to install MDAC 7 or
later. The most obvious one is :
http://support.microsoft.com/default.aspx?scid=kb;en-us;315467

But in Release Manifest for MDAC 2.8 they listed alot of components which
will be installed with it and I never need
http://support.microsoft.com/?kbid=828396

So isn't there any smaller package to installed instead of this one ?
 
¤ Hallo everybody,
¤
¤ I've developed a small windows forms application using C# , this application
¤ store some data in an Access 2000 database. How can I ensure that my
¤ application will work well on any computer even without Office 2000 ?
¤
¤ Should I include with it "Jet 4.0 Service Pack 7" , "MDAC" or something else
¤ ?

Yes you will need to include both packages with your distribution:

http://www.microsoft.com/downloads/...e3-c795-4b7d-b037-185d0506396c&DisplayLang=en
http://support.microsoft.com/?KBID=282010


Paul ~~~ (e-mail address removed)
Microsoft MVP (Visual Basic)
 
Back
Top