# SQLite Tasks
# SQLiteQuery
Task for executing a single query against a sqlite3 database; returns the result (if any) from the query.
Args:
db (str, optional): the location of the database (.db) filequery (str, optional): the optional default query to execute at runtime; can also be provided as a keyword torun, which takes precedence over this default. Note that a query should consist of a single SQL statement.data (tuple, optional): values to use whenqueryis a parametrized string. See https://docs.python.org/3/library/sqlite3.html for more details.**kwargs (optional): additional keyword arguments to pass to the standard Task initalization
| methods: |
|---|
prefect.tasks.database.sqlite.SQLiteQuery.run (db=None, query=None, data=())[source] |
Args:
|
# SQLiteScript
Task for executing a SQL script against a sqlite3 database.
Args:
db (str, optional): the location of the database (.db) filescript (str, optional): the optional default script string to render at runtime; can also be provided as a keyword torun, which takes precedence over this default.**kwargs (optional): additional keyword arguments to pass to the standard Task initialization
| methods: |
|---|
prefect.tasks.database.sqlite.SQLiteScript.run (db=None, script=None)[source] |
Args:
|
This documentation was auto-generated from commit n/a
on February 23, 2022 at 19:26 UTC