1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542
|
.. _orm_mapping_classes_toplevel:
==========================
ORM Mapped Class Overview
==========================
Overview of ORM class mapping configuration.
For readers new to the SQLAlchemy ORM and/or new to Python in general,
it's recommended to browse through the
:ref:`orm_quickstart` and preferably to work through the
:ref:`unified_tutorial`, where ORM configuration is first introduced at
:ref:`tutorial_orm_table_metadata`.
ORM Mapping Styles
==================
SQLAlchemy features two distinct styles of mapper configuration, which then
feature further sub-options for how they are set up. The variability in mapper
styles is present to suit a varied list of developer preferences, including
the degree of abstraction of a user-defined class from how it is to be
mapped to relational schema tables and columns, what kinds of class hierarchies
are in use, including whether or not custom metaclass schemes are present,
and finally if there are other class-instrumentation approaches present such
as if Python dataclasses_ are in use simultaneously.
In modern SQLAlchemy, the difference between these styles is mostly
superficial; when a particular SQLAlchemy configurational style is used to
express the intent to map a class, the internal process of mapping the class
proceeds in mostly the same way for each, where the end result is always a
user-defined class that has a :class:`_orm.Mapper` configured against a
selectable unit, typically represented by a :class:`_schema.Table` object, and
the class itself has been :term:`instrumented` to include behaviors linked to
relational operations both at the level of the class as well as on instances of
that class. As the process is basically the same in all cases, classes mapped
from different styles are always fully interoperable with each other.
The original mapping API is commonly referred to as "classical" style,
whereas the more automated style of mapping is known as "declarative" style.
SQLAlchemy now refers to these two mapping styles as **imperative mapping**
and **declarative mapping**.
Regardless of what style of mapping used, all ORM mappings as of SQLAlchemy 1.4
originate from a single object known as :class:`_orm.registry`, which is a
registry of mapped classes. Using this registry, a set of mapper configurations
can be finalized as a group, and classes within a particular registry may refer
to each other by name within the configurational process.
.. versionchanged:: 1.4 Declarative and classical mapping are now referred
to as "declarative" and "imperative" mapping, and are unified internally,
all originating from the :class:`_orm.registry` construct that represents
a collection of related mappings.
.. _orm_declarative_mapping:
Declarative Mapping
-------------------
The **Declarative Mapping** is the typical way that
mappings are constructed in modern SQLAlchemy. The most common pattern
is to first construct a base class using the :func:`_orm.declarative_base`
function, which will apply the declarative mapping process to all subclasses
that derive from it. Below features a declarative base which is then
used in a declarative table mapping::
from sqlalchemy import Column, Integer, String, ForeignKey
from sqlalchemy.orm import declarative_base
# declarative base class
Base = declarative_base()
# an example mapping using the base
class User(Base):
__tablename__ = "user"
id = Column(Integer, primary_key=True)
name = Column(String)
fullname = Column(String)
nickname = Column(String)
Above, the :func:`_orm.declarative_base` callable returns a new base class from
which new classes to be mapped may inherit from, as above a new mapped
class ``User`` is constructed.
The base class refers to a :class:`_orm.registry` object that maintains a
collection of related mapped classes. The :func:`_orm.declarative_base`
function is in fact shorthand for first creating the registry with the
:class:`_orm.registry` constructor, and then generating a base class using the
:meth:`_orm.registry.generate_base` method::
from sqlalchemy.orm import registry
# equivalent to Base = declarative_base()
mapper_registry = registry()
Base = mapper_registry.generate_base()
The major Declarative mapping styles are further detailed in the following
sections:
* :ref:`orm_declarative_generated_base_class` - declarative mapping using a
base class generated by the :class:`_orm.registry` object.
* :ref:`orm_declarative_decorator` - declarative mapping using a decorator,
rather than a base class.
Within the scope of a Declarative mapped class, there are also two varieties
of how the :class:`_schema.Table` metadata may be declared. These include:
* :ref:`orm_declarative_table` - individual :class:`_schema.Column` definitions
are combined with a table name and additional arguments, where the Declarative
mapping process will construct a :class:`_schema.Table` object to be mapped.
* :ref:`orm_imperative_table_configuration` - Instead of specifying table name
and attributes separately, an explicitly constructed :class:`_schema.Table` object
is associated with a class that is otherwise mapped declaratively. This
style of mapping is a hybrid of "declarative" and "imperative" mapping.
Documentation for Declarative mapping continues at :ref:`declarative_config_toplevel`.
.. _classical_mapping:
.. _orm_imperative_mapping:
Imperative Mapping
-------------------
An **imperative** or **classical** mapping refers to the configuration of a
mapped class using the :meth:`_orm.registry.map_imperatively` method,
where the target class does not include any declarative class attributes.
The "map imperative" style has historically been achieved using the
:func:`_orm.mapper` function directly, however this function now expects
that a :meth:`_orm.registry` is present.
.. deprecated:: 1.4 Using the :func:`_orm.mapper` function directly to
achieve a classical mapping directly is deprecated. The
:meth:`_orm.registry.map_imperatively` method retains the identical
functionality while also allowing for string-based resolution of
other mapped classes from within the registry.
In "classical" form, the table metadata is created separately with the
:class:`_schema.Table` construct, then associated with the ``User`` class via
the :meth:`_orm.registry.map_imperatively` method::
from sqlalchemy import Table, Column, Integer, String, ForeignKey
from sqlalchemy.orm import registry
mapper_registry = registry()
user_table = Table(
"user",
mapper_registry.metadata,
Column("id", Integer, primary_key=True),
Column("name", String(50)),
Column("fullname", String(50)),
Column("nickname", String(12)),
)
class User:
pass
mapper_registry.map_imperatively(User, user_table)
Information about mapped attributes, such as relationships to other classes, are provided
via the ``properties`` dictionary. The example below illustrates a second :class:`_schema.Table`
object, mapped to a class called ``Address``, then linked to ``User`` via :func:`_orm.relationship`::
address = Table(
"address",
metadata_obj,
Column("id", Integer, primary_key=True),
Column("user_id", Integer, ForeignKey("user.id")),
Column("email_address", String(50)),
)
mapper_registry.map_imperatively(
User,
user,
properties={
"addresses": relationship(Address, backref="user", order_by=address.c.id)
},
)
mapper_registry.map_imperatively(Address, address)
When using classical mappings, classes must be provided directly without the benefit
of the "string lookup" system provided by Declarative. SQL expressions are typically
specified in terms of the :class:`_schema.Table` objects, i.e. ``address.c.id`` above
for the ``Address`` relationship, and not ``Address.id``, as ``Address`` may not
yet be linked to table metadata, nor can we specify a string here.
Some examples in the documentation still use the classical approach, but note that
the classical as well as Declarative approaches are **fully interchangeable**. Both
systems ultimately create the same configuration, consisting of a :class:`_schema.Table`,
user-defined class, linked together with a :func:`.mapper`. When we talk about
"the behavior of :func:`.mapper`", this includes when using the Declarative system
as well - it's still used, just behind the scenes.
.. _orm_mapper_configuration_overview:
Mapped Class Essential Components
==================================
With all mapping forms, the mapping of the class can be
configured in many ways by passing construction arguments that become
part of the :class:`_orm.Mapper` object. The function which ultimately
receives these arguments is the :func:`_orm.mapper` function, which are delivered
to it originating from one of the front-facing mapping functions defined
on the :class:`_orm.registry` object.
There are four general classes of configuration information that the
:func:`_orm.mapper` function looks for:
The class to be mapped
----------------------
This is a class that we construct in our application.
There are generally no restrictions on the structure of this class. [1]_
When a Python class is mapped, there can only be **one** :class:`_orm.Mapper`
object for the class. [2]_
When mapping with the :ref:`declarative <orm_declarative_mapping>` mapping
style, the class to be mapped is either a subclass of the declarative base class,
or is handled by a decorator or function such as :meth:`_orm.registry.mapped`.
When mapping with the :ref:`imperative <orm_imperative_mapping>` style, the
class is passed directly as the
:paramref:`_orm.registry.map_imperatively.class_` argument.
The table, or other from clause object
--------------------------------------
In the vast majority of common cases this is an instance of
:class:`_schema.Table`. For more advanced use cases, it may also refer
to any kind of :class:`_sql.FromClause` object, the most common
alternative objects being the :class:`_sql.Subquery` and :class:`_sql.Join`
object.
When mapping with the :ref:`declarative <orm_declarative_mapping>` mapping
style, the subject table is either generated by the declarative system based
on the ``__tablename__`` attribute and the :class:`_schema.Column` objects
presented, or it is established via the ``__table__`` attribute. These
two styles of configuration are presented at
:ref:`orm_declarative_table` and :ref:`orm_imperative_table_configuration`.
When mapping with the :ref:`imperative <orm_imperative_mapping>` style, the
subject table is passed positionally as the
:paramref:`_orm.registry.map_imperatively.local_table` argument.
In contrast to the "one mapper per class" requirement of a mapped class,
the :class:`_schema.Table` or other :class:`_sql.FromClause` object that
is the subject of the mapping may be associated with any number of mappings.
The :class:`_orm.Mapper` applies modifications directly to the user-defined
class, but does not modify the given :class:`_schema.Table` or other
:class:`_sql.FromClause` in any way.
.. _orm_mapping_properties:
The properties dictionary
-------------------------
This is a dictionary of all of the attributes
that will be associated with the mapped class. By default, the
:class:`_orm.Mapper` generates entries for this dictionary derived from the
given :class:`_schema.Table`, in the form of :class:`_orm.ColumnProperty`
objects which each refer to an individual :class:`_schema.Column` of the
mapped table. The properties dictionary will also contain all the other
kinds of :class:`_orm.MapperProperty` objects to be configured, most
commonly instances generated by the :func:`_orm.relationship` construct.
When mapping with the :ref:`declarative <orm_declarative_mapping>` mapping
style, the properties dictionary is generated by the declarative system
by scanning the class to be mapped for appropriate attributes. See
the section :ref:`orm_declarative_properties` for notes on this process.
When mapping with the :ref:`imperative <orm_imperative_mapping>` style, the
properties dictionary is passed directly as the ``properties`` argument
to :meth:`_orm.registry.map_imperatively`, which will pass it along to the
:paramref:`_orm.mapper.properties` parameter.
Other mapper configuration parameters
-------------------------------------
When mapping with the :ref:`declarative <orm_declarative_mapping>` mapping
style, additional mapper configuration arguments are configured via the
``__mapper_args__`` class attribute. Examples of use are available
at :ref:`orm_declarative_mapper_options`.
When mapping with the :ref:`imperative <orm_imperative_mapping>` style,
keyword arguments are passed to the to :meth:`_orm.registry.map_imperatively`
method which passes them along to the :func:`_orm.mapper` function.
The full range of parameters accepted are documented at :class:`_orm.mapper`.
.. _orm_mapped_class_behavior:
Mapped Class Behavior
=====================
Across all styles of mapping using the :class:`_orm.registry` object,
the following behaviors are common:
.. _mapped_class_default_constructor:
Default Constructor
-------------------
The :class:`_orm.registry` applies a default constructor, i.e. ``__init__``
method, to all mapped classes that don't explicitly have their own
``__init__`` method. The behavior of this method is such that it provides
a convenient keyword constructor that will accept as optional keyword arguments
all the attributes that are named. E.g.::
from sqlalchemy.orm import declarative_base
Base = declarative_base()
class User(Base):
__tablename__ = "user"
id = Column(...)
name = Column(...)
fullname = Column(...)
An object of type ``User`` above will have a constructor which allows
``User`` objects to be created as::
u1 = User(name="some name", fullname="some fullname")
The above constructor may be customized by passing a Python callable to
the :paramref:`_orm.registry.constructor` parameter which provides the
desired default ``__init__()`` behavior.
The constructor also applies to imperative mappings::
from sqlalchemy.orm import registry
mapper_registry = registry()
user_table = Table(
"user",
mapper_registry.metadata,
Column("id", Integer, primary_key=True),
Column("name", String(50)),
)
class User:
pass
mapper_registry.map_imperatively(User, user_table)
The above class, mapped imperatively as described at :ref:`orm_imperative_mapping`,
will also feature the default constructor associated with the :class:`_orm.registry`.
.. versionadded:: 1.4 classical mappings now support a standard configuration-level
constructor when they are mapped via the :meth:`_orm.registry.map_imperatively`
method.
.. _orm_mapper_inspection:
Runtime Introspection of Mapped classes, Instances and Mappers
---------------------------------------------------------------
A class that is mapped using :class:`_orm.registry` will also feature a few
attributes that are common to all mappings:
* The ``__mapper__`` attribute will refer to the :class:`_orm.Mapper` that
is associated with the class::
mapper = User.__mapper__
This :class:`_orm.Mapper` is also what's returned when using the
:func:`_sa.inspect` function against the mapped class::
from sqlalchemy import inspect
mapper = inspect(User)
..
* The ``__table__`` attribute will refer to the :class:`_schema.Table`, or
more generically to the :class:`.FromClause` object, to which the
class is mapped::
table = User.__table__
This :class:`.FromClause` is also what's returned when using the
:attr:`_orm.Mapper.local_table` attribute of the :class:`_orm.Mapper`::
table = inspect(User).local_table
For a single-table inheritance mapping, where the class is a subclass that
does not have a table of its own, the :attr:`_orm.Mapper.local_table` attribute as well
as the ``.__table__`` attribute will be ``None``. To retrieve the
"selectable" that is actually selected from during a query for this class,
this is available via the :attr:`_orm.Mapper.selectable` attribute::
table = inspect(User).selectable
..
.. _orm_mapper_inspection_mapper:
Inspection of Mapper objects
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
As illustrated in the previous section, the :class:`_orm.Mapper` object is
available from any mapped class, regardless of method, using the
:ref:`core_inspection_toplevel` system. Using the
:func:`_sa.inspect` function, one can acquire the :class:`_orm.Mapper` from a
mapped class::
>>> from sqlalchemy import inspect
>>> insp = inspect(User)
Detailed information is available including :attr:`_orm.Mapper.columns`::
>>> insp.columns
<sqlalchemy.util._collections.OrderedProperties object at 0x102f407f8>
This is a namespace that can be viewed in a list format or
via individual names::
>>> list(insp.columns)
[Column('id', Integer(), table=<user>, primary_key=True, nullable=False), Column('name', String(length=50), table=<user>), Column('fullname', String(length=50), table=<user>), Column('nickname', String(length=50), table=<user>)]
>>> insp.columns.name
Column('name', String(length=50), table=<user>)
Other namespaces include :attr:`_orm.Mapper.all_orm_descriptors`, which includes all mapped
attributes as well as hybrids, association proxies::
>>> insp.all_orm_descriptors
<sqlalchemy.util._collections.ImmutableProperties object at 0x1040e2c68>
>>> insp.all_orm_descriptors.keys()
['fullname', 'nickname', 'name', 'id']
As well as :attr:`_orm.Mapper.column_attrs`::
>>> list(insp.column_attrs)
[<ColumnProperty at 0x10403fde0; id>, <ColumnProperty at 0x10403fce8; name>, <ColumnProperty at 0x1040e9050; fullname>, <ColumnProperty at 0x1040e9148; nickname>]
>>> insp.column_attrs.name
<ColumnProperty at 0x10403fce8; name>
>>> insp.column_attrs.name.expression
Column('name', String(length=50), table=<user>)
.. seealso::
:class:`.Mapper`
.. _orm_mapper_inspection_instancestate:
Inspection of Mapped Instances
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
The :func:`_sa.inspect` function also provides information about instances
of a mapped class. When applied to an instance of a mapped class, rather
than the class itself, the object returned is known as :class:`.InstanceState`,
which will provide links to not only the :class:`.Mapper` in use by the
class, but also a detailed interface that provides information on the state
of individual attributes within the instance including their current value
and how this relates to what their database-loaded value is.
Given an instance of the ``User`` class loaded from the database::
>>> u1 = session.scalars(select(User)).first()
The :func:`_sa.inspect` function will return to us an :class:`.InstanceState`
object::
>>> insp = inspect(u1)
>>> insp
<sqlalchemy.orm.state.InstanceState object at 0x7f07e5fec2e0>
With this object we can see elements such as the :class:`.Mapper`::
>>> insp.mapper
<Mapper at 0x7f07e614ef50; User>
The :class:`_orm.Session` to which the object is :term:`attached`, if any::
>>> insp.session
<sqlalchemy.orm.session.Session object at 0x7f07e614f160>
Information about the current :ref:`persistence state <session_object_states>`
for the object::
>>> insp.persistent
True
>>> insp.pending
False
Attribute state information such as attributes that have not been loaded or
:term:`lazy loaded` (assume ``addresses`` refers to a :func:`_orm.relationship`
on the mapped class to a related class)::
>>> insp.unloaded
{'addresses'}
Information regarding the current in-Python status of attributes, such as
attributes that have not been modified since the last flush::
>>> insp.unmodified
{'nickname', 'name', 'fullname', 'id'}
as well as specific history on modifications to attributes since the last flush::
>>> insp.attrs.nickname.value
'nickname'
>>> u1.nickname = "new nickname"
>>> insp.attrs.nickname.history
History(added=['new nickname'], unchanged=(), deleted=['nickname'])
.. seealso::
:class:`.InstanceState`
:attr:`.InstanceState.attrs`
:class:`.AttributeState`
.. _dataclasses: https://docs.python.org/3/library/dataclasses.html
.. [1] When running under Python 2, a Python 2 "old style" class is the only
kind of class that isn't compatible. When running code on Python 2,
all classes must extend from the Python ``object`` class. Under
Python 3 this is always the case.
.. [2] There is a legacy feature known as a "non primary mapper", where
additional :class:`_orm.Mapper` objects may be associated with a class
that's already mapped, however they don't apply instrumentation
to the class. This feature is deprecated as of SQLAlchemy 1.3.
|