I have a .dbf file of 11mb. when I try to query that file, the driver does not returns me the records for rows which are above 70%, of the files size. for e.g. I have 100 records, the driver returns the result for 70 records, but if I query for rowslying 71-100, the driver does not returns the records.
Is there a limitation with the size of the DBF. Kndly suggest.
|
It support 2G file. Maybe 30% records in your dbf are deleted record. You can try deletesAreVisible=true connection property to see those delete rows.
deletesAreVisible: Indicates whether DBF's resultSet includes deleted records. Default value: false
|