I have a dbf with a deleted row, but isDeleted() fails.
Debugging showed that this.fields[0].getName() in isDeleted() doesn't return "deleted", but the name of the first data column in the dbf. File was created with vfp8.
public boolean isDeleted() {
return "deleted".equals(this.fields[0].getName()) && getBoolean("deleted");
}
I have a dbf with a deleted row, but isDeleted() fails.
Debugging showed that this.fields[0].getName() in isDeleted() doesn't return "deleted", but the name of the first data column in the dbf. File was created with vfp8.
My simple Testprg:
Output:
Oops. DELETED differs