sqlite jdbc错误SQLITE_IOERR_LOCK

时间:2017-01-19 14:44:40

标签: sqlite sqlitejdbc

我有一个使用sqlite-jdbc 3.14.2的java8程序的runnable jar。它在Windows 10和ubuntu上运行良好。即我可以在所有表​​格上查询这些平台上的内容。但是,当我在FreeBSD 10.3-releasep4上运行它时,当我在所有表上运行查询时,它会给我以下错误。

FreeBSD 10.3-release上的咨询文件锁定逻辑(磁盘I / O错误)中出现

[SQLITE_IOERR_LOCK] I/O错误

请告知解决方法或解决方案。

3.16.1

存在同样的问题

2 个答案:

答案 0 :(得分:0)

所以我终于发现了什么是错的。这是一个导致问题的NFS安装卷。使用本地文件系统上的DB文件,它就像魅力一样。

答案 1 :(得分:0)

如果以后有人遇到此问题,可以通过以下方式重现该错误:首先使用 WAL 日记模式创建或打开数据库,编写内容,然后关闭数据库并尝试打开它再次以日志记录 off 处于只读模式。此单元测试将重现错误:

@Test
public void mixJournalingModesFailureTest()
{
    File tempDb = File.createTempFile("tempdbtest", ".db");
    tempDb.deleteOnExit();

    // Open a temp DB in RW mode with WAL journalling
    String url = "jdbc:sqlite:" + tempDb.getAbsolutePath();
    SQLiteConfig config = new SQLiteConfig();

    // Ser read-write with WAL journalling
    config.setJournalMode( SQLiteConfig.JournalMode.WAL );
    config.setReadOnly( false );

    Properties props = config.toProperties();
    Connection conn = DriverManager.getConnection( url, props );

    // Write something
    try ( Statement statement = conn.createStatement() )
    {
        statement.execute( "CREATE TABLE test (words text)" );
    }

    // Close the DB
    conn.close();

    // Open the DB again but with journalling off and in read-only mode
    config.setJournalMode( SQLiteConfig.JournalMode.OFF );
    config.setReadOnly( true );

    props = config.toProperties();

    try
    {
        // This will throw the SQLITE_IOERR_LOCK advisory lock exception
        DriverManager.getConnection( url, props );
        fail( "Should throw advisory lock exception" );
    }
    catch ( SQLException ignore ) {}
}