Date: Tue, 10 Nov 2009 11:36:52 -0500 From: Rod Person <rodperson@rodperson.com> To: Matthias Apitz <guru@unixarea.de> Cc: freebsd-questions@freebsd.org Subject: Re: FreeBSD && remote MS ACCESS database Message-ID: <20091110113652.56a68963@atomizer> In-Reply-To: <20091110150158.GA6500@current.Sisis.de> References: <20091110150158.GA6500@current.Sisis.de>
next in thread | previous in thread | raw e-mail | index | archive | help
On Tue, 10 Nov 2009 16:01:58 +0100 Matthias Apitz <guru@unixarea.de> wrote: > > Hello, > > Is there any chance to read and update a remote MS ACCSESS database from > FreeBSD 8-CURRENT, via ODBC? Thanks in advance > > matthias If you are familiar with python you could use py-odbc to read the access .mdb file as a normal database. A connection string of an Acess 2007 db without a password would look like this, where fileName is the complete path and file name of the access mdb file. cntString = "Provider=Microsoft.Jet.OLEDB.4.0; Data Source=%s; User Id=admin;Password=;" % (fileName) I've not tried it over an internet connection, though. -- Rod Person http://www.rodperson.com Religion is what keeps the poor from murdering the rich. -Napoleon
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20091110113652.56a68963>