Hi. I can't insert a new record into existing .mdb file (legacy system). File created in MS Access97 format. Description of the structure obtained with the help of the code: Table table = db.getTable(tblName); for (Row row : table) { System.out.println(row); for (Column column : table.getColumns()) { String columnName = column.getName(); Short columnLength = column.getLength(); Short columnLengthInUnints = column.getLengthInUnits(); Object value = row.get(columnName) != null ? row.get(columnName)...