Access Driver for CFMX on Linux

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default Access Driver for CFMX on Linux

    I am running CFMX 6.1 on RedHat Linux AS. I have an MS Access database on a
    Windows server I want to access. CFMX does not come with a built-in Access ODBC
    or JDBC driver. Is there any way to get this to work? I can not convert the
    Access DB to MySQL as it is still used in Access.

    Thanks.

    skooch Guest

  2. Similar Questions and Discussions

    1. MS Access on CFMX Linux
      Hi. I need to be able to use an MS Access database on CFMX on Linux. Has anyone managed to do this? I guess using JDBC but how? Thanks in...
    2. Installing DB2 JDBC Driver on CFMX 6.1 Standard
      I want to connect to a DB2 database that resides on an AS400. I've seen several articles on how to build a connection string but nothing on where...
    3. JDBC driver problem w/ CFMX 7
      I have copied the .jar file to the web-inf/lib directory, and added the class path as:...
    4. Wireless card driver for Linux
      Hi, I am not certain whether this is the right group to ask this question. Apologies in advance. I bought a Compaq 3045 US Laptop and it has...
    5. ATI Radeon 9800 Pro & Linux driver support?
      Hello, I am debating if I should get a 9800 model or 9700 model. I notice on http://www.ati.com/support/faq/linux.html#features ... 9800 isn't...
  3. #2

    Default Re: Access Driver for CFMX on Linux

    You may want to do a search from the following link for MS Access Drivers and
    see if any of the results suit your needs:

    [url]http://developers.sun.com/product/jdbc/drivers[/url]

    I hope this helps,

    Stephanie Juma
    Macromedia, Inc.

    Stephanie Guest

  4. #3

    Default Re: Access Driver for CFMX on Linux

    The results this link turns up are either outdated or not compatible with
    Linux. I have an Access database which is currently modified on Windows using
    Access forms so I can't convert it. I need to get the data into MySQL on a
    regular basis and do not want to have to export and import the data. If
    necessary I could probably set up an intermediary Windows server running CF.
    Would this help?

    skooch Guest

  5. #4

    Default Re: Access Driver for CFMX on Linux

    If you install ColdFusion MX on Windows then you will have the option to run
    the ODBC Driver for Access since you will have the the ODBC Socket Services
    installed.

    I hope this helps,

    Stephanie Juma
    Macromedia, Inc.

    Stephanie Guest

  6. #5

    Default Re: Access Driver for CFMX on Linux

    I think the only way to connect to MS Access is via a windows box because it's
    a file based
    DB and doesn't listen on a port so the MS Jet engine still comes into play.
    What you could
    do is duplicate the Access tables in MySql, link them into the Access DB, then
    the Access
    forms will use the MySql tables just like Access tables. That's what I did
    but it was with
    MS SQL.

    OldCFer Guest

  7. #6

    Default Re: Access Driver for CFMX on Linux

    That is a very interesting idea and that just might work. Can Access forms do
    this to remote ODBC connections or does the MySQL DB need to be on the same
    machine? If it will work through ODBC you have made my week!

    skooch Guest

  8. #7

    Default Re: Access Driver for CFMX on Linux

    Nope, your MYSQL DB can be anywhere. Just make sure you have the latest MYSQL
    ODBC Drivers on your Access machine and set up the DSN via the Control panel
    ODBC Data Sources. Then in Access go to File/Get External Data/link tables.
    The
    type of file is ODBC Data sources. Then choose the datasource you set up for
    the
    MYSQL datasource. You should be able to see all of the MYSQL tables. Choose
    the tables you want. The Access forms can use them just like they were Access
    tables.
    If they are the same name and data types Access forms can't tell the
    difference.

    OldCFer Guest

  9. #8

    Default Re: Access Driver for CFMX on Linux

    OldCFer wrote:
    >> I think the only way to connect to MS Access is via a windows box
    because it's
    a file based DB and doesn't listen on a port so the MS Jet engine still
    comes into play.

    Depending on what API you want to use (JDBC or ODBC), there are several
    alternatives.

    Several companies make middleware servers that enable you to use a
    single driver (JDBC or ODBC) to connect to the middleware server. The
    middleware server uses ODBC, JDBC and/or native APIs to connect to the
    data source. For example (where client refers to a database client):

    Client -- JDBC --> Middleware ---- ODBC --> data source
    Server

    Catalog of 200+ ODBC drivers (and ODBC middleware servers):
    [url]http://www.SQLSummit.com/ODBCVend.htm[/url]

    Catalog of 120+ JDBC drivers (and JDBC middleware servers):
    [url]http://www.SQLSummit.com/JDBCVend.htm[/url]

    Catalog of 30+ .NET data providers:
    [url]http://www.SQLSummit.com/DataProv.htm[/url]

    Catalog of OLE DB Providers:
    [url]http://www.SQLSummit.com/oledbVen.htm[/url]

    Catalog of DB2 Extenders:
    [url]http://www.SQLSummit.com/Extenven.htm[/url]

    Catalog of XQuery Engines/Processors:
    [url]http://www.SQLSummit.com/XQueryProv.htm[/url]

    ken_north@compuserve.com Guest

  10. #9

    Default Re: Access Driver for CFMX on Linux

    OldCFer wrote:
    >> I think the only way to connect to MS Access is via a windows box
    because it's
    a file based DB and doesn't listen on a port so the MS Jet engine still
    comes into play.

    Depending on what API you want to use (JDBC or ODBC), there are several
    alternatives.

    Several companies make middleware servers that enable you to use a
    single driver (JDBC or ODBC) to connect to the middleware server. The
    middleware server uses ODBC, JDBC and/or native APIs to connect to the
    data source. For example (where client refers to a database client):

    Client -- JDBC --> Middleware ---- ODBC --> data source
    Server

    Catalog of 200+ ODBC drivers (and ODBC middleware servers):
    [url]http://www.SQLSummit.com/ODBCVend.htm[/url]

    Catalog of 120+ JDBC drivers (and JDBC middleware servers):
    [url]http://www.SQLSummit.com/JDBCVend.htm[/url]

    Catalog of 30+ .NET data providers:
    [url]http://www.SQLSummit.com/DataProv.htm[/url]

    Catalog of OLE DB Providers:
    [url]http://www.SQLSummit.com/oledbVen.htm[/url]

    Catalog of DB2 Extenders:
    [url]http://www.SQLSummit.com/Extenven.htm[/url]

    Catalog of XQuery Engines/Processors:
    [url]http://www.SQLSummit.com/XQueryProv.htm[/url]

    ken_north@compuserve.com Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139