continue; // Not the entry we're looking for
}
if (data.isInconsistent()) {
// Just an extra precaution
throw new DatabaseTableInconsistencyException("DataAccess is marked inconsistent!");
}
HashMap<Column, Object> dataSet = data.toDatabaseEntryList();
for (Column column : dataSet.keySet()) {
Element child = element.getChild(column.columnName());
if (child == null) {
throw new DatabaseTableInconsistencyException("Column " + column.columnName() + " does not exist. Update table schema or fix DataAccess!");
}
// Do not change auto-increment fields
if (column.autoIncrement()) {
continue;
}