We're are about to develop an app in C# that will use a MS Access
database file for data storage. The db structure will not be
modified. The user will use the C# developed app to view and edit the
data (as well as add/delete records etc.).
In order to distribute or app (including .mdb file) to PC's without MS
Access installed do we need anything (I'm thinking specically about
the MS Access Runtime)?
What are the licensing implications for distributing access databases
(not access) to PC's without Access installed?
Regards and thanks,
Nick
P.S. This is going to be our first C# project after years with
Borland Builder. If anyone else has made the transition and has any
tales to tell I would be very interested in hearing them here or
nic...@yahoo.co.uk
I am under the impression that you need to have the Developer's Edition to
distribute .mdbs and the Runtime, OR, the user needs to have MS Access.
This is just an impression.
Have you checked for information on the Microsoft site?
--
Good luck
Jeff Boyce
<Access MVP>
"Nick" <nic...@yahoo.co.uk> wrote in message
news:2413908f.0408...@posting.google.com...
Firstly, please don't crosspost...
> In order to distribute or app (including .mdb file) to PC's without MS
> Access installed do we need anything (I'm thinking specically about
> the MS Access Runtime)?
No - the MS Access Runtime is for running actual Access applications, not C#
applications which interface with a Jet database file (.MDB).
> What are the licensing implications for distributing access databases
> (not access) to PC's without Access installed?
None.
Nick, pardon my mis-understanding.
Jeff Boyce
<Access MVP>
"Arvin Meyer" <a...@m.com> wrote in message
news:eps$dNgfE...@tk2msftngp13.phx.gbl...
As I understand it MDAC no longer comes with Jet drivers so there is no need
to install MDAC. I believe there is a separate installer for the Jet
drivers. Should I be concerned with installing this to make sure the Jet
drivers are there or can I assume that every Windows machine has some
version of Jet? Or does the .Net Framework 1.1 include everything I need to
manipulate access databases?
Please correct me if I've made any incorrect statements above.
-Brett-
"Arvin Meyer" <a...@m.com> wrote in message
news:eps$dNgfE...@tk2msftngp13.phx.gbl...
> Or does the .Net Framework 1.1 include everything I need to
> manipulate access databases?
Yes it does. You need to reference either the System.Data.OleDb namespace
(preferred) or the System.Data.Odbc namespace to provide connectivity with
your .MDB file, and everything you need from that point is included in the
.Net Framework.
E.g. if you wrote a WinForms app which used a .MDB file for database
services, all you would need to do would be to compile the app and deploy
it. At install time, the compiled app would detect the presence or absence
of the .NET Framework, and invite you to install it if wasn't already
installed.
That is just what I wanted to hear.
Thanks...
-Brett-
"Mark Rae" <ma...@mark-N-O-S-P-A-M-rae.co.uk> wrote in message
news:OmlBc%23LgEH...@TK2MSFTNGP10.phx.gbl...
Ron Allen
"Brett Robichaud" <brettro...@nospam.yahoo.com> wrote in message
news:%23M8w43V...@TK2MSFTNGP10.phx.gbl...
But thanks for giving me more correct info. I would undoubtedly have run
into problems had I taken the original advice.
-Brett-
"Ron Allen" <rallen@_nospam_src-us.com> wrote in message
news:eXgsBE5g...@TK2MSFTNGP11.phx.gbl...