iryndin / jdbf

Java utility to read/write DBF files
108 stars 77 forks source link

Append records #20

Open zotona opened 8 years ago

zotona commented 8 years ago

Is it possible to append records to existing dbf? What is best way, if we want to write 200k rows?

iryndin commented 8 years ago

Currently there is only one way to write records: DbfWriter.java. The only way it accepts records is Map<String, Object>, where keys are field names, values are field values. To write 200K recs - write it one by one.