mirror of
https://github.com/simonw/sqlite-utils.git
synced 2026-09-17 14:04:11 +02:00
Update documentation
This commit is contained in:
parent
eb65270782
commit
1b992c7c1e
1 changed files with 1 additions and 1 deletions
|
|
@ -410,7 +410,7 @@ Use it like this:
|
|||
"is_good_dog": True,
|
||||
}], pk="id", column_order=("id", "twitter", "name"))
|
||||
|
||||
The column types used in the ``CREATE TABLE`` statement are automatically derived from the types of data in that first batch of rows. Any additional or missing columns in subsequent batches will be ignored.
|
||||
The column types used in the ``CREATE TABLE`` statement are automatically derived from the types of data in that first batch of rows. Any additional columns in subsequent batches will cause a ``sqlite3.OperationalError`` exception to be raised unless the ``alter=True`` argument is supplied, in which case the new columns will be created.
|
||||
|
||||
The function can accept an iterator or generator of rows and will commit them according to the batch size. The default batch size is 100, but you can specify a different size using the ``batch_size`` parameter:
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue