Bases: apscheduler.jobstores.base.BaseJobStore
Stores jobs in a database table using SQLAlchemy. The table will be created if it doesn’t exist in the database.
Plugin alias: sqlalchemy
| Parameters: |
|
|---|
SQLAlchemyJobStore stores jobs in any relational database management system supported by SQLAlchemy. It can use either a preconfigured Engine or you can pass it a connection URL.
| External dependencies | SQLAlchemy (+ the backend specific driver package) |
| Example | examples/jobstores/sqlalchemy_.py (view online). |