This merge request adds list and tuple row factories and updates the documentation. It closes #132.
These changes mean that ETL Helper can export data in the main Python built-in collection types. Adding the list_row_factory provides a mutable container for use with MS-SQL, which cannot use dictionaries. Adding tuple gives an option with minimal processing overhead, although I haven't done any testing to see how much difference it makes.
To test
[x] Check the updated README makes sense
[x] Confirm that the tests pass and are testing the correct thing
Description
This merge request adds list and tuple row factories and updates the documentation. It closes #132.
These changes mean that ETL Helper can export data in the main Python built-in collection types. Adding the
list_row_factory
provides a mutable container for use with MS-SQL, which cannot use dictionaries. Addingtuple
gives an option with minimal processing overhead, although I haven't done any testing to see how much difference it makes.To test