Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to connect to a database made by MS Access using Java, but I cannot seem to manage. I am using ODBC and I'm getting this exception:

java.sql.SQLException: [Microsoft][ODBC Driver Manager] The specified DSN contains an architecture mismatch between the Driver and Application

My Java:

package javaapplication2;

import java.sql.Statement;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;


/**
 *
 * @author Owner
 */
public class JavaApplication2 {

    /**
     * @param args the command line arguments
     * 
     */


    public static void main(String[] args) {
        // TODO code application logic here
        try {
            Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
            String sourceURL = new String("jdbc:odbc:myDatabase");
            System.out.println(sourceURL);
            Connection dbConnection = DriverManager.getConnection(sourceURL,"admin","");

            Statement myStmt  = dbConnection.createStatement();

            String query = "INSERT INTO People(ID, Name, Surname, Age, Contact, Location, Course) VALUES"
                    + " (1007, 'Elroy', 'Smith', '33', 21366688, 'Somewhere', 'somecourse')";

            myStmt.executeUpdate(query);

            ResultSet results = myStmt.executeQuery("SELECT * FROM People");

            while(results.next())
            {
                System.out.print(results.getString(1));
                System.out.print(results.getString(2));
                System.out.print(results.getString(3));
                System.out.println(results.getString(4));

            }

            results.close();

        }
        catch(ClassNotFoundException cnfe)
        {
            System.out.println(cnfe);
        }
        catch(SQLException sqle)
        {
            System.out.println(sqle);
        }
    }
}
share|improve this question
1  
Are you using a 64-bit jvm? If so, you need a 64-bit odbc driver. – dogbane Jan 17 '12 at 14:04
1  
Yes, I think I am. I found the 64bit version of the odbc in C:\Windows\SysWOW64 but it's not the same one that the control panel turns on. – user1028408 Jan 17 '12 at 14:09
Can't install 64bit driver cause my other office products are 32bit :/ – DavidVdd Nov 15 '12 at 10:58

7 Answers

None of these did it for me. I did find the answer on MSDN. There were hints to it though. The architecture in the error is referring to 32 vs 64 bits. My solution was to find out which my app is running under (Access) which 2010 is 32b. I found this by looking in the Process tab of Task Manager where all 32b processes have * 32 the end of their names. As was said, the control panel will launch the 64 bit version of ODBC from here

c:\windows\system32\odbcad32.exe

and the 32 bit version is here:

c:\windows\sysWOW64\odbcad32.exe (easiest to copy and paste into run dialog)

So I set up DSNs with names ending in 32 and 64 in each of the corresponding ODBC control panels (AKA Administrator) that pointed to the same thing. Then, I picked/pick the correct one based on whether the app using it is 32b or 64b.

This is yet another thing I wish MS had copied from Apple: how to handle 32 & 64b painlessly and unnoticeably.

share|improve this answer
i had tried 64 bit version and run it as administrator, but it also does not work!! – Fatima Zohra Dec 5 '12 at 18:55
1  
There must be bit-harmony. If the app is 32, there must be a 32 bit config for it. If the app is 64, you have to have one that's 64. I did not try creating configs with the same name because I did not want them to get out of sync (forget to change both at the same time). You did not give me enough info to try to offer suggestions. I hope you figured it out. (Why can't they do the so very simple thing and create one 64 bit app that configures both 64 and 32 bit environments???) – Pecos Bill Mar 9 at 1:27
And as was stated below yet not obvious, the drivers involved also have to match (probably best to install both 32 and 64) though I don't think you can pick the driver if it wasn't the proper architecture. – Pecos Bill Mar 9 at 1:30

DEFAULTLY COMMAND PROMPT IS CONNECTED TO SYSTEM 32 SO WE NEED 64BIT COMMAND PROMPT I.E AVAILABLE IN C:/WINDOWS/SYSWOW64/CMD.EXE in that compile and run your java application problem is solved

share|improve this answer

Have you created the DSN first in Control Panel>Administrative Tools>ODBC>System DSN. Name it same as "myDatabase" and if i is asking for locating the database/access file specify the path using browse option. Once ur DSN will be created successfully you will be easily able to access ur DB.

share|improve this answer
I created my DSN with the ODBC i found in C:\Windows\SysWOW64... The one in the control panel had nearly not drivers save the ones for sql server. – user1028408 Jan 17 '12 at 14:11
then you must install the drivers because without those drivers you cannot make ODBC connection. – Ankur Jain Jan 17 '12 at 14:16
do you have a link to these drivers? I've tried installing some but they didn't work. – user1028408 Jan 17 '12 at 14:26
I downloaded these and substituted the connection string: Connection dbConnection = DriverManager.getConnection("Driver={Microsoft Access Driver(*.mdb, *.accdb)};DBQ=C:\\Users\\Owner\\Documents\\myDatabase.mdb","admin",""); but its still giving me trouble. Maybe I need to change something else in the code? – user1028408 Jan 17 '12 at 14:47
show 2 more comments

There's an architecture mismatch. Your JDBC Driver and your JDK should be of the same architecture. If your using 32bit Driver and your JDK is 64bits, you would get that error.

See this

Fix : Depends on your architecture.

You will need 64-bit drivers if your Java is 64-bit.

Download : http://www.microsoft.com/downloads/details.aspx?familyid=C06B8369-60DD-4B64-A44B-84B371EDE16D&displaylang=en

share|improve this answer
1  
How do i fix it? – user1028408 Jan 17 '12 at 14:08
downloading now. – user1028408 Jan 17 '12 at 14:20
i've downloaded it and tried the new connection string as was specified in the instructions but it still didn't work. Maybe I'm doing something wrong? – user1028408 Jan 17 '12 at 14:40

If you are using netbeans go to tools-> java Platform, change jdk_home which points to c:/programfiles/java/jdk1_7 to c:programFiles(x86)/java/jdk1_6_21

if not editable find netbeans.cnf and make change as stated abouve for jdk_home. restart neatbeans and how it works I had the same problem , but i worked .

share|improve this answer

The problem you were facing might be because: you were having Office 32 bit and Command Prompt 64 bit. To solve the problem you need to follow 2 steps:

  1. Open ODBC Manager for DSN using: C:\Windows\SysWOW64\odbcad32.exe This will open the ODBC Data Administrator for 32 bit version and you will see all the database drivers.

  2. After this you need to open the 32 bit command prompt using: C:\Windows\SysWOW64\cmd.exe This will open the 32 bit version of command prompt. In this new CMD please recompile your Java program and run your program.

Hope this will help.

share|improve this answer

A little late, but since I've run into the same problem, in your exact scenario, I figured I'd add my solution.

I have Windows 7 (64-bit) and Office 2010 (32-bit). I tried with the DSN-less connection string:

jdbc:odbc:Driver={Microsoft Access Driver (*.mdb, *.accdb)};DBQ=I:/TeamForge/ORS/CTFORS.accdb

and I tried with the DSN connection, using both the System32 and SysWOW64 versions of the ODBC Admin, and none of that worked.

What finally worked, was to match the bit version of Java with the bit version of Office. Once I did that, I could use either the DSN or DSN less connection mode, without any fuss.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.