The Artima Developer Community
Sponsored Link

Java Answers Forum
Access ODBC DS having Japanese using Sun JDBC-ODBC Bridge.

0 replies on 1 page.

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 0 replies on 1 page
Nikhil Katre

Posts: 1
Nickname: nikhil
Registered: Jul, 2002

Access ODBC DS having Japanese using Sun JDBC-ODBC Bridge. Posted: Jul 5, 2002 3:00 AM
Reply to this message Reply
Advertisement
Hi,

I am facing a problem with accessing a Microsoft Access ODBC source containing Japanese tablenames using the Sun JDBC-ODBC Bridge.


The OS used is Windows 2000 Server. The JDK used is jdk1.4.0. I created a new mdb file using Microsoft Access 2002 and created a table having a Japanese name (I used the Microsoft IME 2000 for Japanese). Then I created an ODBC source with Microsoft Access driver and this file as the database. I tried to access the datasource using the Sun JDBC-ODBC Bridge and get the bytes of the tablename from the datasource as follows -

DatabaseMetaData dbMeta = connection.getMetaData();
ResultSet rs = dbMeta.getTables(null, null, null, new String[] {"TABLE"});
ResultSetMetaData rsmd = rs.getMetaData();

while (rs.next())
{
byte [] b = rs.getBytes(3); //table name is col no 3.

//print the bytes present in the byte array.
}
I verified this code using a few databases, the bytes returned are correct for databases having English tablenames. But for the database having Japanese tablenames the bytes returned are 63, 63, 63 which is the ASCII code for "?".
The same problem was present on using the EasySoft JDBC-ODBC Bridge.

Any suggestions what could be causing this problem ?

Regards,
Nikhil Katre.

Topic: Help with applets and the object tag Previous Topic   Next Topic Topic: NoClassDefFoundError--Java's Pons Asinorum

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use