Reading a Microsoft access file.

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • infotechsys@pivot.net

    #1

    Reading a Microsoft access file.

    I googled for the answer but all the answer seem to imply that you
    have to have Access installed on your system. I have a file that was
    created using Access and I want develop a Python script to
    read the file and produce a report. Can this be done, if could you point
    me to some doc?
    Thanks.
    Wayne

  • Karsten W.

    #2
    Re: Reading a Microsoft access file.

    You could access the file via the odbc interface. There is a module
    odbc which comes with the windows package, iirc.

    Regards,
    Karsten.

    infotechsys@piv ot.net wrote:
    I googled for the answer but all the answer seem to imply that you
    have to have Access installed on your system. I have a file that was
    created using Access and I want develop a Python script to
    read the file and produce a report. Can this be done, if could you point
    me to some doc?
    Thanks.
    Wayne

    Comment

    • Roger Upole

      #3
      Re: Reading a Microsoft access file.

      <infotechsys@pi vot.netwrote in message news:mailman.71 4.1161203760.11 739.python-list@python.org ...
      >I googled for the answer but all the answer seem to imply that you
      have to have Access installed on your system. I have a file that was
      created using Access and I want develop a Python script to
      read the file and produce a report. Can this be done, if could you point
      me to some doc?
      Thanks.
      Wayne
      >
      Access is just a frontend for the Jet database engine.
      You should be able to access the file via database API's
      from any system that has the Jet database driver installed.
      (which is practically all Windows systems anymore)

      Roger



      Comment

      Working...