0

尝试使用 java 在 Microsoft 访问数据库中插入一些值。

但是,我可能会出错,

java.sql.SQLException:[Microsoft][ODBC Driver Manager] 指定的 DSN 包含线程“main”中的驱动程序和应用程序异常之间的体系结构不匹配 java.lang.NullPointerException

使用 SysWoW64 > odbcad32 创建数据源 im 并将它的数据源添加到系统 DNS。我这么说是因为我在其他地方看到了 64 位系统出现问题的地方。但是它仍然对我不起作用。

微软 Office 32 位。

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


public class AuctionHouseJDBC {

    /**
     * @param args
     */
    public static void main(String[] args) {

        String theItem = "Car";
        String theClient="Name";
        String theMessage="1001";



Connection conn =null; // Create connection object

        try{
            Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
            System.out.println("Driver Found");
        } catch(Exception e) {
            System.out.println("Driver Not Found");
            System.err.println(e);
        }

        // connecting to database
        try{
            String database ="jdbc:odbc:Driver={Microsoft Access Driver (*.accdb)};DBQ=AuctionHouseDatabase.accdb;";

            conn = DriverManager.getConnection(database,"","");

            System.out.println("Conn Found");
        }
        catch(SQLException se) {
            System.out.println("Conn Not Found");
            System.err.println(se);
        }
        // Create select statement and execute it

        try{        
            /*String insertSQL = "INSERT INTO AuctionHouse VALUES (  "
                    +"'" +theItem+"', "  
                    +"'" +theClient+"', "
                    +"'" +theMessage+"')";  
            */

            Statement stmt = conn.createStatement();
            String insertSQL = "Insert into AuctionHouse VALUES ('Item','Name','Price')";

             stmt.executeUpdate(insertSQL);
            // Retrieve the results

            conn.close();
        } catch(SQLException se) {
            System.out.println("SqlStatment Not Found");
            System.err.println(se);
        }

    }

}

StaceTrace:

java.sql.SQLException: [Microsoft][ODBC Driver Manager] Data source name not found and no default driver specified
    at sun.jdbc.odbc.JdbcOdbc.createSQLException(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbc.standardError(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbc.SQLDriverConnect(Unknown Source)
    at sun.jdbc.odbc.JdbcOdbcConnection.initialize(Unknown Source)

微软办公 64 位

我安装了 64 位版本,现在出现错误 [Microsoft][ODBC 驱动程序管理器] 不是有效的文件名。

4

1 回答 1

3

首先确保您可以通过 ODBC 访问该数据库。odbcad32为 64 位和 32 位系统制作 DSN 。然后作为 JDBC 连接字符串使用:jdbc:odbc:[CreatedDSN]. 如果您无法连接到 64 位版本的 Access,请odbcad32确保它在 32 位版本中工作,odbcad32并确保您使用 32 位版本的 Java。

另请查看其他回复:Can't connect to MS Access DB with Windows-64bit

特别有趣的是链接到:http ://www.selikoff.net/2011/07/26/connecting-to-ms-access-file-via-jdbc-in-64-bit-java/

于 2012-12-10T08:07:53.947 回答