Driver type with MS Access

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

  1. #1

    Default Driver type with MS Access

    Hello,
    I realized an application, for maintaining data, that another (java/jsp)
    application uses. There, for data base connection they use a JDBC-ODBC bridge.
    But now we have problems with unicode. So here my questions:
    In the CF-docu they say, that MS Acess with unicode uses the type 2 of jdbc
    driver which means 'Native-API/partly Java driver'.
    How can I change this to a JDBC-ODBC bridge?
    Which driver type is using MS Access (without unicode capability)?
    Would a 'Default driver' solve this (is using the JDBC-ODBC bridge)... and if,
    what do I have to fill in for driver class and driver name? I tried -> jdbc:
    odbc: Driver={MicroSoft Access Driver (*.mdb)} and ->
    sun.jdbc.odbc.JdbcOdbcDriver but it did not work.
    -> Message: No suitable driver available for ....

    Thanks

    Dyonisus Guest

  2. Similar Questions and Discussions

    1. Print Driver Access Time
      When I go to print, it takes about 60 seconds to load the drivers in InD. Every other application loads them with 1-2-3 seconds or so. Any reason...
    2. openbase sql/driver type & port number
      I cannot find documentation for the driver class and local host port number for a cold fusion connection CF7 on the MAC using OPENBASE 9.1.5 SQL...
    3. MS Access Driver for MAC or alternatives
      Hello all, Have installed CF 7 on my MAC running OSX. Everything is fine except for it does not show an MS Access Driver in the dropdown list...
    4. Need Microsoft Access DB driver for Mac OS
      Is there a driver I can install or what can I put in instead of the Microsoft Access driver when setting up a DSN on my mac version of Coldfusion? ...
    5. MS Access with Unicode driver problems
      When using the Microsoft Access driver, the below works. When using the Microsoft Access with Unicode driver, I get a message stating #clinicid#"...
  3. #2

    Default Re: Driver type with MS Access

    Some of the answers depend on your version

    1) What version of ColdFusion are you using?
    2) Are you looking for a driver for MS Access that does or does not support
    unicode?
    3) Are you creating trying to create a datasource through the CF Administrator?

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

    mxstu Guest

  4. #3

    Default Re: Driver type with MS Access

    >But now we have problems with unicode.
    You can try Hxtt Access, a commercial type 4 JDBC driver for MS Access,
    at [url]http://www.hxtt.net/access/[/url] .

    Yonghong Zhao
    System Analyst
    [url]www.hxtt.net[/url]

    zhaoyh.hxtt@gmail.com Guest

  5. #4

    Default Re: Driver type with MS Access

    Here my answers:
    1) We are using CF MX, Version 6(,1,0,63958)
    2) A driver that supports unicode. The java application uses the jdbc-odbc
    bridge. They are reading the db result as bytes and then convert them to a
    string. Here their code:
    while(rs.next){
    bytes[] b = rs.getBytes(1);
    String outString = new String(b, "UTF-8);
    }
    Using the String, that I write into the database (with MS-Access supporting
    unicode or not) the result is not correct.
    3) Yes

    Dyonisus 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