更新表时H2数据库“重命名文件时出错”

时间:2011-02-02 10:25:14

标签: h2

我正在使用最新版本的H2,即版本1.3.150,我在更新VARCHAR2时得到了一个org.h2.jdbc.JdbcSQLException。

  • SQL语句非常简单

    UPDATE STAMP_TABLE SET DESCRIPTION='a bit of text' WHERE STAMPID='s/1'

  • 并且表本身没什么特别的,只是一堆VARCHAR2和一个BLOB

  • 它第一次运行并且第二次失败并显示错误消息:

    Error while renaming file "C:\my\local\path\1.t6.lob.db" to "C:\my\local\path\1.temp.lob.db"

  • 使用SQL语句的方法如下:

    public void updateStampDescription(StampId stampId, String description) throws SQLException {
    
        PreparedStatement stmt = null;
    
        try {
    
            stmt = conn.prepareStatement(UPDATE_STAMP_DESCRIPTION);
            stmt.setString(1, description);
            stmt.setString(2, stampId.getId());
    
            logger.debug("SQL statement: " + stmt.toString());
    
            stmt.execute();
    
        }
        catch(SQLException ex){
            logger.error("Error while updating table " + STAMPS_TABLE_NAME + ", description column: " + ex.getMessage() );
            ex.printStackTrace();
            throw ex;
        }
        finally {
            if(stmt!=null) stmt.close(); // Also closes the ResultSet
        }
    
    }
    

知道什么是错的吗?

1 个答案:

答案 0 :(得分:0)

我会回答我自己的问题:

实际上,该项目位于Dropbox文件夹上,Dropbox当时正在使用这些文件,因此无法重命名为H2。