Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Start the reading dbf row records from the last to the first #142

Open
AbrahamMorales opened this issue Sep 9, 2021 · 0 comments
Open

Comments

@AbrahamMorales
Copy link

AbrahamMorales commented Sep 9, 2021

It's possible to start the reading records in order from the last row to the first row inserted?

That feature could be added in the options, something like this:

var options = new DbfDataReaderOptions
{
SkipDeletedRecords = true,
StartReadingFromLastRow = true
};

For example, if file.dbf has 1000 rows inserted and iterate over the rows from 1, 2, 3, 4, 5 until 1000 with the parameter StartReadingFromLastRow = true should be iterate from row 1000, 999, 998, 997, 996 ....... until the row 1.

I'm not sure if DbfDataReader already has an implementation to do this.

Thank you.

@AbrahamMorales AbrahamMorales changed the title Start the reading dbf row records from last to the first Start the reading dbf row records from the last to the first Sep 9, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant