Ask a Question related to Coldfusion Database Access, Design and Development.
-
Dyonisus #1
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
-
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... -
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... -
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... -
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? ... -
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#"... -
mxstu #2
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
-
zhaoyh.hxtt@gmail.com #3
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
-
Dyonisus #4
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



Reply With Quote

