Relates to #42 and #44. I want the ability to extract values out into lookup tables during bulk insert/upsert operations.
db.insert_all(rows, extracts=["species"])
- creates species table for values in the species column
db.insert_all(rows, extracts={"species": "Species"})
- as above but the new table is called
Species.
Relates to #42 and #44. I want the ability to extract values out into lookup tables during bulk insert/upsert operations.
db.insert_all(rows, extracts=["species"])db.insert_all(rows, extracts={"species": "Species"})Species.