当我在 Netbeans 7.0.1 中运行以下 Java 程序时,我得到以下输出: connection failed java.sql.SQLException: [Microsoft][ODBC Driver Manager] The specified DSN contains a architecture mismatch between the Driver and Application。我有 64 位 Windows 7、Ms Access 2007 32 位、jdk 7 和 32 位 odbc 驱动程序。相同的程序在记事本中成功运行,那么 netbeans 中的问题是什么?我也尝试使用 netbeans 7.3.1,但它没有用。请提出一些建议,因为我到处搜索但找不到解决方案。
公共类数据库连接{
public static void main(String[] args){
try{
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
Connection con=DriverManager.getConnection("jdbc:odbc:eBookStore");
System.out.println("connected");
}
catch(Exception e)
{ System.out.println("connection failed");
System.out.println(e);
}
} }