嵌入式Derby / Java DB中的错误自动增量

时间:2015-08-20 13:19:54

标签: java jdbc derby

我正在开发一种在嵌入模式下使用Apache Derby数据库的会计程序。我有一个包含两列的表格分支:

CREATE TABLE Branch(
     idBranch INT NOT NULL PRIMARY KEY 
     GENERATED ALWAYS AS IDENTITY (START WITH 1, INCREMENT BY 1), 
     place VARCHAR(255) NOT NULL
);

当我在分支表中插入新记录时,自动增量1不能正常工作。 我得到了以下结果:

+----------+
| idBranch |
+----------+
| 1        |
| 101      |
| 201      |
| 301      |
+----------+

但结果应如下:

+----------+
| idBranch |
+----------+
| 1        |
| 2        |
| 3        |
| 4        |
+----------+

以下是我连接数据库的方式:

private static final String DRIVER = "org.apache.derby.jdbc.EmbeddedDriver";

public static Connection createConnection() {
    Connection connection = null;
    try {
        Class.forName(DRIVER);
        connection = DriverManager.getConnection("jdbc:derby:" + DATABASE);
    } catch (ClassNotFoundException ex) {
        logger.log(Level.SEVERE, "JDBC Driver not loaded!", ex);
        System.exit(1);
    } catch (SQLException ex) {
        // create the database
        DerbyDB derbyDB = new DerbyDB();
        connection = derbyDB.create();
    }
    return connection;
}

以下是在Branch表中插入新记录的方法:

private static final String CREATE_QUERY = "INSERT INTO Branch(place) VALUES(?)";

public int createBranch(Branch branch) {
    Connection connection = DerbyDAOFactory.createConnection();
    try {
        PreparedStatement statement = connection.prepareStatement(CREATE_QUERY, Statement.RETURN_GENERATED_KEYS);
        statement.setString(1, branch.getPlace());
        statement.execute();
        ResultSet result = statement.getGeneratedKeys();
        if(result.next()) {
            return result.getInt(1);
        }
    } catch (SQLException ex) {
        logger.log(Level.SEVERE, null, ex);
    }
    return -1;
}

为什么我会得到这个结果?

1 个答案:

答案 0 :(得分:4)

您正在观察的序列是此错误的结果:https://issues.apache.org/jira/browse/DERBY-5151

以下文档描述了它发生的原因:https://db.apache.org/derby/docs/10.9/ref/rrefproperpreallocator.html

总结...... 生成的值是预先分配的(默认情况下一次100个值)。当数据库被错误地关闭时,这些预先分配的值被泄露 - 它们被简单地丢弃,当数据库再次启动时,分配器开始计算它停止的位置(在序列中引入间隙)。

换句话说,这是预期的行为 - 为了避免它,请确保以有序的方式关闭数据库:

If Not NFE Is Nothing Then
     If NFE.Offset(, 8) = cnpj Then
        'do something
     End If
End If