Construct a sqlite-specific variant :class:`_sqlite.Insert` construct. .. container:: inherited_member The :func:`sqlalchemy.dialects.sqlite.insert` function creates a :class:`sqlalchemy.dialects.sqlite.Insert`. This class is based on the dialect-agnostic :class:`_
(table: _DMLTableArgument)
| 37 | |
| 38 | |
| 39 | def insert(table: _DMLTableArgument) -> Insert: |
| 40 | """Construct a sqlite-specific variant :class:`_sqlite.Insert` |
| 41 | construct. |
| 42 | |
| 43 | .. container:: inherited_member |
| 44 | |
| 45 | The :func:`sqlalchemy.dialects.sqlite.insert` function creates |
| 46 | a :class:`sqlalchemy.dialects.sqlite.Insert`. This class is based |
| 47 | on the dialect-agnostic :class:`_sql.Insert` construct which may |
| 48 | be constructed using the :func:`_sql.insert` function in |
| 49 | SQLAlchemy Core. |
| 50 | |
| 51 | The :class:`_sqlite.Insert` construct includes additional methods |
| 52 | :meth:`_sqlite.Insert.on_conflict_do_update`, |
| 53 | :meth:`_sqlite.Insert.on_conflict_do_nothing`. |
| 54 | |
| 55 | """ |
| 56 | return Insert(table) |
| 57 | |
| 58 | |
| 59 | class Insert(StandardInsert): |