airflow.providers.sqlite.operators.sqlite¶
Module Contents¶
-
class
airflow.providers.sqlite.operators.sqlite.SqliteOperator(*, sql: str, sqlite_conn_id: str = 'sqlite_default', parameters: Optional[Union[Mapping, Iterable]] = None, **kwargs)[source]¶ Bases:
airflow.models.BaseOperatorExecutes sql code in a specific Sqlite database
See also
For more information on how to use this operator, take a look at the guide: SqliteOperator
- Parameters
sql (str or list[str]) -- the sql code to be executed. Can receive a str representing a sql statement, a list of str (sql statements), or reference to a template file. Template reference are recognized by str ending in '.sql' (templated)
sqlite_conn_id (str) -- reference to a specific sqlite database
parameters (dict or iterable) -- (optional) the parameters to render the SQL query with.