mirror of
https://github.com/sqlalchemy/sqlalchemy.git
synced 2026-05-29 12:06:28 -04:00
8be93c23ee
detailing ORM event recipes across the board.
27 lines
559 B
ReStructuredText
27 lines
559 B
ReStructuredText
.. _session_toplevel:
|
|
|
|
=================
|
|
Using the Session
|
|
=================
|
|
|
|
.. module:: sqlalchemy.orm.session
|
|
|
|
The :func:`.orm.mapper` function and :mod:`~sqlalchemy.ext.declarative` extensions
|
|
are the primary configurational interface for the ORM. Once mappings are
|
|
configured, the primary usage interface for persistence operations is the
|
|
:class:`.Session`.
|
|
|
|
.. toctree::
|
|
:maxdepth: 2
|
|
|
|
session_basics
|
|
session_state_management
|
|
cascades
|
|
session_transaction
|
|
persistence_techniques
|
|
contextual
|
|
session_events
|
|
session_api
|
|
|
|
|