UCanAccess 连接上的"Invalid authorization specification"错误



我的UCanAccess驱动程序有问题,即当我尝试使用以下代码连接到数据库

public static void main(String[] args) {
    //establish connection with database in order to execute sql queries
    try {
        conn = DriverManager.getConnection("jdbc:ucanaccess://H:\IT_PAT_Program_LOCALONLY\IT_Pat_Database.accdb;showschema=true");
        System.out.println("Connection Established");
    } catch (SQLException ex) {
        System.out.println("Could Not Connect to databasen"+ex);
    }
    //closes the database connection at program shutdown
    Runtime.getRuntime().addShutdownHook(new Thread() {
        public void run() {
            try {
                conn.close();
                System.out.println("Shutdown Succesful");
            } catch (SQLException ex) {
                System.out.println("An exception occuredn"+ex);
            }
        }
    });
}

我遇到了以下错误:

Could Not Connect to database
net.ucanaccess.jdbc.UcanaccessSQLException: UCAExc:::3.0.0 invalid authorization specification - not found: Admin

数据库也连接为一个持久化单元,然而,因为我不知道有什么方法可以从代码中使用它(谷歌一直没有帮助),这种方法似乎是我唯一的选择。

我们无法看到您在代码中的哪个位置进行授权。

    用户?
  • 密码?

Class.forName("net.ucanaccess.jdbc.UcanaccessDriver");
Connection conn=DriverManager.getConnection(
                                "jdbc:ucanaccess://<mdb or accdb file path>",user, password);

相关内容

  • 没有找到相关文章