我有一个Java作业,需要更新MS Access数据库。数据库有六列,其中一列是自动编号的id列。我已经为以下五个字段编写了更新语句:

 resultSet.beforeFirst();
  if(resultSet.next()) {
    resultSet.moveToInsertRow();
    resultSet.updateString(1, FirstNameTextField.getText());
    resultSet.updateString(2, LastNameTextField.getText());
    resultSet.updateString(3, SignUpUsernameTextField.getText());
    resultSet.updateString(4, EmailTextField.getText());
    resultSet.updateString(5, SignUpPasswordField.getText());
    **Here should be the statement that updates the 6th field**;
    resultSet.insertRow();

即使它是一个自动编号字段,我也必须写一些东西来更新它或者resultset.insert();不会工作并抛出异常吗?如有任何帮助,我们将不胜感激。谢谢。

最佳答案

我刚刚针对一个名为“id”的自动编号字段并且UCanAccess正确插入新行的表测试了下面的代码

String connStr = "jdbc:ucanaccess://C:/Users/Public/mdbTest.mdb";
try (Connection conn = DriverManager.getConnection(connStr)) {
    try (Statement s = conn.createStatement(
            ResultSet.TYPE_SCROLL_INSENSITIVE, ResultSet.CONCUR_UPDATABLE)) {
        ResultSet rs = s.executeQuery("SELECT Id, Field1, Field2 FROM ucatest");
        rs.moveToInsertRow();
        rs.updateInt("Id", 0);
        rs.updateString("Field1", "newvalue1");
        rs.updateString("Field2", "newvalue2");
        rs.insertRow();
    }
}

提供给updateInt()的实际值并不重要;执行insertRow()时会分配下一个可用的自动编号值。
有关使用ucanaccess的更多信息,请参见
Manipulating an Access database from Java without ODBC

10-08 13:14