SqliteOperator¶
Use the SqliteOperator
to execute
Sqlite commands in a Sqlite database.
Using the Operator¶
Use the sqlite_conn_id
argument to connect to your Sqlite instance where
the connection metadata is structured as follows:
Parameter |
Input |
---|---|
Host: string |
MySql hostname |
Schema: string |
Set schema to execute Sql operations on by default |
Login: string |
Sqlite user |
Password: string |
Sqlite user password |
Port: int |
Sqlite port |
An example usage of the SqliteOperator is as follows:
Furthermore, you can use an external file to execute the SQL commands. Script folder must be at the same level as DAG.py file.
Reference¶
For further information, look at:
Note
Parameters given via SqliteOperator() are given first-place priority
relative to parameters set via Airflow connection metadata (such as schema
, login
, password
etc).