3

我在使用 SqlJet Transactions 时尝试访问我的数据库,但我一直收到此错误

org.tmatesoft.sqljet.core.SqlJetException: MISUSE: error code is MISUSE

这是我的代码:

SqlJetDb db = null;

            try {
                File dbFile = new File(Configuration.DATABASE_NAME);

                db = SqlJetDb.open(dbFile, true);
                db.getOptions().setAutovacuum(true);
                db.beginTransaction(SqlJetTransactionMode.READ_ONLY);
                ISqlJetTable table = db.getTable("customers");
                ISqlJetCursor cursor = table.order(table.getPrimaryKeyIndexName());
                if (!cursor.eof()) {
                    do {
                        getInitData(cursor);
                    } while (cursor.next());
                }
            } catch (Exception e) {
                e.printStackTrace();
            } finally {
                try {
                    db.commit();
                } catch (Exception e) {
                    e.printStackTrace();
                }
            }

有人知道这个问题有什么问题吗?由于这个列表,实际的库使用不正确,但我已经检查过了,对我来说没有任何问题。 http://grepcode.com/file/repo1.maven.org/maven2/org.tmatesoft.sqljet/sqljet/1.0.2/org/tmatesoft/sqljet/core/SqlJetErrorCode.java#SqlJetErrorCode

谢谢!

4

1 回答 1

0

发生这种情况是因为您试图打开已被另一个进程打开的数据库。它发生在我身上是因为 db 是由 Firefox SQLite Manager 打开的,但基本上它可能由访问您的 DB 的任何其他线程或进程发生。

于 2014-04-19T21:17:56.977 回答