sqlite-utils duplicate command, closes #454, refs #449

Also made it so .duplicate() raises new NoTable exception rather than raising
an AssertionError if the source table does not exist.
This commit is contained in:
Simon Willison 2022-07-15 14:45:14 -07:00
commit c710ade644
7 changed files with 80 additions and 3 deletions

View file

@ -691,6 +691,8 @@ The ``table.duplicate()`` method creates a copy of the table, copying both the t
The new ``authors_copy`` table will now contain a duplicate copy of the data from ``authors``.
This method raises ``sqlite_utils.db.NoTable`` if the table does not exist.
.. _python_api_bulk_inserts:
Bulk inserts