:mod:`apscheduler.jobstores.sqlalchemy`
=======================================
.. automodule:: apscheduler.jobstores.sqlalchemy
API
---
.. autoclass:: SQLAlchemyJobStore(url=None, engine=None, tablename='apscheduler_jobs', metadata=None, pickle_protocol=pickle.HIGHEST_PROTOCOL)
:show-inheritance:
Introduction
------------
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.
.. list-table::
:widths: 1 4
* - External dependencies
- `SQLAlchemy `_ (+ the backend specific driver package)
* - Example
- ``examples/jobstores/sqlalchemy_.py``
(`view online `_).