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