ORM Internals¶
Key ORM constructs, not otherwise covered in other sections, are listed here.
Object Name | Description |
---|---|
Provide an inspection interface corresponding to a particular attribute on a particular mapped object. |
|
Keeps track of the options sent to
|
|
Tracks state information at the class level. |
|
Describes an object attribute that corresponds to a table column. |
|
Instruments a Python property for use in query expressions. |
|
Defines a “composite” mapped attribute, representing a collection of columns as one attribute. |
|
A token propagated throughout the course of a chain of attribute events. |
|
A base class applied to all ORM objects that can be returned
by the |
|
Adds the |
|
tracks state information at the instance level. |
|
Class bound instrumented attribute which adds basic descriptor methods. |
|
Indicates the many-to-many direction for a |
|
Indicates the many-to-one direction for a |
|
Represent a particular class attribute mapped by |
|
Symbol indicating an |
|
Indicates the one-to-many direction for a |
|
Defines SQL operators for |
|
Base class for descriptor objects that intercept
attribute events on behalf of a |
|
Describes an object property that holds a single item or list of items that correspond to a related database table. |
|
- class sqlalchemy.orm.state.AttributeState(state, key)¶
Provide an inspection interface corresponding to a particular attribute on a particular mapped object.
The
AttributeState
object is accessed via theInstanceState.attrs
collection of a particularInstanceState
:Members
from sqlalchemy import inspect insp = inspect(some_mapped_object) attr_state = insp.attrs.some_attribute
-
attribute
sqlalchemy.orm.state.AttributeState.
history¶ Return the current pre-flush change history for this attribute, via the
History
interface.This method will not emit loader callables if the value of the attribute is unloaded.
Note
The attribute history system tracks changes on a per flush basis. Each time the
Session
is flushed, the history of each attribute is reset to empty. TheSession
by default autoflushes each time aQuery
is invoked. For options on how to control this, see Flushing.See also
AttributeState.load_history()
- retrieve history using loader callables if the value is not locally present.get_history()
- underlying function
-
method
sqlalchemy.orm.state.AttributeState.
load_history()¶ Return the current pre-flush change history for this attribute, via the
History
interface.This method will emit loader callables if the value of the attribute is unloaded.
Note
The attribute history system tracks changes on a per flush basis. Each time the
Session
is flushed, the history of each attribute is reset to empty. TheSession
by default autoflushes each time aQuery
is invoked. For options on how to control this, see Flushing.New in version 0.9.0.
-
attribute
sqlalchemy.orm.state.AttributeState.
loaded_value¶ The current value of this attribute as loaded from the database.
If the value has not been loaded, or is otherwise not present in the object’s dictionary, returns NO_VALUE.
-
attribute
sqlalchemy.orm.state.AttributeState.
value¶ Return the value of this attribute.
This operation is equivalent to accessing the object’s attribute directly or via
getattr()
, and will fire off any pending loader callables if needed.
-
attribute
- class sqlalchemy.orm.util.CascadeOptions(value_list)¶
Keeps track of the options sent to
relationship.cascade
Class signature
class
sqlalchemy.orm.util.CascadeOptions
(builtins.frozenset
)
- class sqlalchemy.orm.instrumentation.ClassManager(class_)¶
Tracks state information at the class level.
Members
clear(), copy(), dispose(), fromkeys(), get(), has_parent(), items(), keys(), manage(), original_init(), pop(), popitem(), setdefault(), state_getter(), unregister(), update(), values()
Class signature
class
sqlalchemy.orm.instrumentation.ClassManager
(builtins.dict
)-
method
sqlalchemy.orm.instrumentation.ClassManager.
clear() None. Remove all items from D. ¶ inherited from the
builtins.dict.clear
method ofbuiltins.dict
-
method
sqlalchemy.orm.instrumentation.ClassManager.
copy() a shallow copy of D ¶ inherited from the
builtins.dict.copy
method ofbuiltins.dict
-
method
sqlalchemy.orm.instrumentation.ClassManager.
dispose()¶ Disassociate this manager from its class.
-
method
sqlalchemy.orm.instrumentation.ClassManager.
fromkeys(value=None, /)¶ inherited from the
builtins.dict.fromkeys
method ofbuiltins.dict
Create a new dictionary with keys from iterable and values set to value.
-
method
sqlalchemy.orm.instrumentation.ClassManager.
get(key, default=None, /)¶ inherited from the
builtins.dict.get
method ofbuiltins.dict
Return the value for key if key is in the dictionary, else default.
-
method
sqlalchemy.orm.instrumentation.ClassManager.
has_parent(state, key, optimistic=False)¶ TODO
-
method
sqlalchemy.orm.instrumentation.ClassManager.
items() a set-like object providing a view on D's items ¶ inherited from the
builtins.dict.items
method ofbuiltins.dict
-
method
sqlalchemy.orm.instrumentation.ClassManager.
keys() a set-like object providing a view on D's keys ¶ inherited from the
builtins.dict.keys
method ofbuiltins.dict
-
method
sqlalchemy.orm.instrumentation.ClassManager.
manage()¶ Mark this instance as the manager for its class.
-
method
sqlalchemy.orm.instrumentation.ClassManager.
original_init()¶ Initialize self. See help(type(self)) for accurate signature.
-
method
sqlalchemy.orm.instrumentation.ClassManager.
pop(k[, d]) v, remove specified key and return the corresponding value. ¶ inherited from the
builtins.dict.pop
method ofbuiltins.dict
If the key is not found, return the default if given; otherwise, raise a KeyError.
-
method
sqlalchemy.orm.instrumentation.ClassManager.
popitem()¶ inherited from the
builtins.dict.popitem
method ofbuiltins.dict
Remove and return a (key, value) pair as a 2-tuple.
Pairs are returned in LIFO (last-in, first-out) order. Raises KeyError if the dict is empty.
-
method
sqlalchemy.orm.instrumentation.ClassManager.
setdefault(key, default=None, /)¶ inherited from the
builtins.dict.setdefault
method ofbuiltins.dict
Insert key with a value of default if key is not in the dictionary.
Return the value for key if key is in the dictionary, else default.
-
method
sqlalchemy.orm.instrumentation.ClassManager.
state_getter()¶ Return a (instance) -> InstanceState callable.
“state getter” callables should raise either KeyError or AttributeError if no InstanceState could be found for the instance.
-
method
sqlalchemy.orm.instrumentation.ClassManager.
unregister()¶ remove all instrumentation established by this ClassManager.
-
method
sqlalchemy.orm.instrumentation.ClassManager.
update([E, ]**F) None. Update D from dict/iterable E and F. ¶ inherited from the
builtins.dict.update
method ofbuiltins.dict
If E is present and has a .keys() method, then does: for k in E: D[k] = E[k] If E is present and lacks a .keys() method, then does: for k, v in E: D[k] = v In either case, this is followed by: for k in F: D[k] = F[k]
-
method
sqlalchemy.orm.instrumentation.ClassManager.
values() an object providing a view on D's values ¶ inherited from the
builtins.dict.values
method ofbuiltins.dict
-
method
- class sqlalchemy.orm.ColumnProperty(*columns, **kwargs)¶
Describes an object attribute that corresponds to a table column.
Public constructor is the
column_property()
function.Members
expressions, operate(), reverse_operate(), __init__(), do_init(), expression, instrument_class(), merge()
Class signature
class
sqlalchemy.orm.ColumnProperty
(sqlalchemy.orm.StrategizedProperty
)-
attribute
sqlalchemy.orm.ColumnProperty.
Comparator.expressions¶ The full sequence of columns referenced by this attribute, adjusted for any aliasing in progress.
New in version 1.3.17.
See also
Mapping a Class against Multiple Tables - usage example
- class Comparator(prop, parentmapper, adapt_to_entity=None)¶
Produce boolean, comparison, and other operators for
ColumnProperty
attributes.See the documentation for
PropComparator
for a brief overview.Class signature
class
sqlalchemy.orm.ColumnProperty.Comparator
(sqlalchemy.util.langhelpers.MemoizedSlots
,sqlalchemy.orm.PropComparator
)-
method
sqlalchemy.orm.ColumnProperty.Comparator.
operate(op, *other, **kwargs)¶ Operate on an argument.
This is the lowest level of operation, raises
NotImplementedError
by default.Overriding this on a subclass can allow common behavior to be applied to all operations. For example, overriding
ColumnOperators
to applyfunc.lower()
to the left and right side:class MyComparator(ColumnOperators): def operate(self, op, other): return op(func.lower(self), func.lower(other))
- Parameters:
op – Operator callable.
*other – the ‘other’ side of the operation. Will be a single scalar for most operations.
**kwargs – modifiers. These may be passed by special operators such as
ColumnOperators.contains()
.
-
method
sqlalchemy.orm.ColumnProperty.Comparator.
reverse_operate(op, other, **kwargs)¶ Reverse operate on an argument.
Usage is the same as
operate()
.
-
method
-
method
sqlalchemy.orm.ColumnProperty.
__init__(*columns, **kwargs)¶ Construct a new
ColumnProperty
object.This constructor is mirrored as a public API function; see
sqlalchemy.orm.column_property()
for a full usage and argument description.
-
method
sqlalchemy.orm.ColumnProperty.
do_init()¶ Perform subclass-specific initialization post-mapper-creation steps.
This is a template method called by the
MapperProperty
object’s init() method.
-
attribute
sqlalchemy.orm.ColumnProperty.
expression¶ Return the primary column or expression for this ColumnProperty.
E.g.:
class File(Base): # ... name = Column(String(64)) extension = Column(String(8)) filename = column_property(name + '.' + extension) path = column_property('C:/' + filename.expression)
-
method
sqlalchemy.orm.ColumnProperty.
instrument_class(mapper)¶ Hook called by the Mapper to the property to initiate instrumentation of the class attribute managed by this MapperProperty.
The MapperProperty here will typically call out to the attributes module to set up an InstrumentedAttribute.
This step is the first of two steps to set up an InstrumentedAttribute, and is called early in the mapper setup process.
The second step is typically the init_class_attribute step, called from StrategizedProperty via the post_instrument_class() hook. This step assigns additional state to the InstrumentedAttribute (specifically the “impl”) which has been determined after the MapperProperty has determined what kind of persistence management it needs to do (e.g. scalar, object, collection, etc).
-
method
sqlalchemy.orm.ColumnProperty.
merge(session, source_state, source_dict, dest_state, dest_dict, load, _recursive, _resolve_conflict_map)¶ Merge the attribute represented by this
MapperProperty
from source to destination object.
-
attribute
- class sqlalchemy.orm.ComparableProperty(comparator_factory, descriptor=None, doc=None, info=None)¶
Instruments a Python property for use in query expressions.
Deprecated since version 0.7:
comparable_property()
is deprecated and will be removed in a future release. Please refer to thehybrid
extension.Members
Class signature
class
sqlalchemy.orm.ComparableProperty
(sqlalchemy.orm.descriptor_props.DescriptorProperty
)-
method
sqlalchemy.orm.ComparableProperty.
__init__(comparator_factory, descriptor=None, doc=None, info=None)¶ Construct a new
ComparableProperty
object.This constructor is mirrored as a public API function; see
sqlalchemy.orm.comparable_property()
for a full usage and argument description.
-
method
- class sqlalchemy.orm.CompositeProperty(class_, *attrs, **kwargs)¶
Defines a “composite” mapped attribute, representing a collection of columns as one attribute.
CompositeProperty
is constructed using thecomposite()
function.See also
Class signature
class
sqlalchemy.orm.CompositeProperty
(sqlalchemy.orm.descriptor_props.DescriptorProperty
)- class Comparator(prop, parentmapper, adapt_to_entity=None)¶
Produce boolean, comparison, and other operators for
CompositeProperty
attributes.See the example in Redefining Comparison Operations for Composites for an overview of usage , as well as the documentation for
PropComparator
.Class signature
class
sqlalchemy.orm.CompositeProperty.Comparator
(sqlalchemy.orm.PropComparator
)
- class CompositeBundle(property_, expr)¶
Class signature
class
sqlalchemy.orm.CompositeProperty.CompositeBundle
(sqlalchemy.orm.query.Bundle
)-
method
sqlalchemy.orm.CompositeProperty.CompositeBundle.
create_row_processor(query, procs, labels)¶ Produce the “row processing” function for this
Bundle
.May be overridden by subclasses.
See also
Column Bundles - includes an example of subclassing.
-
method
-
method
sqlalchemy.orm.CompositeProperty.
__init__(class_, *attrs, **kwargs)¶ Construct a new
CompositeProperty
object.This constructor is mirrored as a public API function; see
sqlalchemy.orm.composite()
for a full usage and argument description.
-
method
sqlalchemy.orm.CompositeProperty.
do_init()¶ Initialization which occurs after the
CompositeProperty
has been associated with its parent mapper.
-
method
sqlalchemy.orm.CompositeProperty.
get_history(state, dict_, passive=symbol('PASSIVE_OFF'))¶ Provided for userland code that uses attributes.get_history().
-
method
sqlalchemy.orm.CompositeProperty.
instrument_class(mapper)¶ Hook called by the Mapper to the property to initiate instrumentation of the class attribute managed by this MapperProperty.
The MapperProperty here will typically call out to the attributes module to set up an InstrumentedAttribute.
This step is the first of two steps to set up an InstrumentedAttribute, and is called early in the mapper setup process.
The second step is typically the init_class_attribute step, called from StrategizedProperty via the post_instrument_class() hook. This step assigns additional state to the InstrumentedAttribute (specifically the “impl”) which has been determined after the MapperProperty has determined what kind of persistence management it needs to do (e.g. scalar, object, collection, etc).
- class sqlalchemy.orm.attributes.Event(attribute_impl, op)¶
A token propagated throughout the course of a chain of attribute events.
Serves as an indicator of the source of the event and also provides a means of controlling propagation across a chain of attribute operations.
The
Event
object is sent as theinitiator
argument when dealing with events such asAttributeEvents.append()
,AttributeEvents.set()
, andAttributeEvents.remove()
.The
Event
object is currently interpreted by the backref event handlers, and is used to control the propagation of operations across two mutually-dependent attributes.New in version 0.9.0.
- Attribute impl:
The
AttributeImpl
which is the current event initiator.- Attribute op:
The symbol
OP_APPEND
,OP_REMOVE
,OP_REPLACE
, orOP_BULK_REPLACE
, indicating the source operation.
- class sqlalchemy.orm.identity.IdentityMap¶
Members
-
method
sqlalchemy.orm.identity.IdentityMap.
check_modified()¶ return True if any InstanceStates present have been marked as ‘modified’.
-
method
- class sqlalchemy.orm.base.InspectionAttr¶
A base class applied to all ORM objects that can be returned by the
inspect()
function.The attributes defined here allow the usage of simple boolean checks to test basic facts about the object returned.
Members
extension_type, is_aliased_class, is_attribute, is_clause_element, is_instance, is_mapper, is_property, is_selectable
While the boolean checks here are basically the same as using the Python isinstance() function, the flags here can be used without the need to import all of these classes, and also such that the SQLAlchemy class system can change while leaving the flags here intact for forwards-compatibility.
-
attribute
sqlalchemy.orm.base.InspectionAttr.
extension_type = symbol('NOT_EXTENSION')¶ The extension type, if any. Defaults to
NOT_EXTENSION
-
attribute
sqlalchemy.orm.base.InspectionAttr.
is_aliased_class = False¶ True if this object is an instance of
AliasedClass
.
-
attribute
sqlalchemy.orm.base.InspectionAttr.
is_attribute = False¶ True if this object is a Python descriptor.
This can refer to one of many types. Usually a
QueryableAttribute
which handles attributes events on behalf of aMapperProperty
. But can also be an extension type such asAssociationProxy
orhybrid_property
. TheInspectionAttr.extension_type
will refer to a constant identifying the specific subtype.See also
-
attribute
sqlalchemy.orm.base.InspectionAttr.
is_clause_element = False¶ True if this object is an instance of
ClauseElement
.
-
attribute
sqlalchemy.orm.base.InspectionAttr.
is_instance = False¶ True if this object is an instance of
InstanceState
.
-
attribute
sqlalchemy.orm.base.InspectionAttr.
is_mapper = False¶ True if this object is an instance of
Mapper
.
-
attribute
sqlalchemy.orm.base.InspectionAttr.
is_property = False¶ True if this object is an instance of
MapperProperty
.
-
attribute
sqlalchemy.orm.base.InspectionAttr.
is_selectable = False¶ Return True if this object is an instance of
Selectable
.
-
attribute
- class sqlalchemy.orm.base.InspectionAttrInfo¶
Adds the
.info
attribute toInspectionAttr
.The rationale for
InspectionAttr
vs.InspectionAttrInfo
is that the former is compatible as a mixin for classes that specify__slots__
; this is essentially an implementation artifact.Members
Class signature
class
sqlalchemy.orm.base.InspectionAttrInfo
(sqlalchemy.orm.base.InspectionAttr
)-
attribute
sqlalchemy.orm.base.InspectionAttrInfo.
info¶ Info dictionary associated with the object, allowing user-defined data to be associated with this
InspectionAttr
.The dictionary is generated when first accessed. Alternatively, it can be specified as a constructor argument to the
column_property()
,relationship()
, orcomposite()
functions.Changed in version 1.0.0:
MapperProperty.info
is also available on extension types via theInspectionAttrInfo.info
attribute, so that it can apply to a wider variety of ORM and extension constructs.
-
attribute
- class sqlalchemy.orm.state.InstanceState(obj, manager)¶
tracks state information at the instance level.
The
InstanceState
is a key object used by the SQLAlchemy ORM in order to track the state of an object; it is created the moment an object is instantiated, typically as a result of instrumentation which SQLAlchemy applies to the__init__()
method of the class.InstanceState
is also a semi-public object, available for runtime inspection as to the state of a mapped instance, including information such as its current status within a particularSession
and details about data on individual attributes. The public API in order to acquire aInstanceState
object is to use theinspect()
system:>>> from sqlalchemy import inspect >>> insp = inspect(some_mapped_object)
See also
Members
attrs, callables, deleted, detached, dict, expired_attributes, has_identity, identity, identity_key, is_instance, mapper, object, pending, persistent, session, transient, unloaded, unloaded_expirable, unmodified, unmodified_intersection(), was_deleted
Class signature
class
sqlalchemy.orm.state.InstanceState
(sqlalchemy.orm.base.InspectionAttrInfo
)-
attribute
sqlalchemy.orm.state.InstanceState.
attrs¶ Return a namespace representing each attribute on the mapped object, including its current value and history.
The returned object is an instance of
AttributeState
. This object allows inspection of the current data within an attribute as well as attribute history since the last flush.
-
attribute
sqlalchemy.orm.state.InstanceState.
callables = ()¶ A namespace where a per-state loader callable can be associated.
In SQLAlchemy 1.0, this is only used for lazy loaders / deferred loaders that were set up via query option.
Previously, callables was used also to indicate expired attributes by storing a link to the InstanceState itself in this dictionary. This role is now handled by the expired_attributes set.
-
attribute
sqlalchemy.orm.state.InstanceState.
deleted¶ Return
True
if the object is deleted.An object that is in the deleted state is guaranteed to not be within the
Session.identity_map
of its parentSession
; however if the session’s transaction is rolled back, the object will be restored to the persistent state and the identity map.Note
The
InstanceState.deleted
attribute refers to a specific state of the object that occurs between the “persistent” and “detached” states; once the object is detached, theInstanceState.deleted
attribute no longer returns True; in order to detect that a state was deleted, regardless of whether or not the object is associated with aSession
, use theInstanceState.was_deleted
accessor.See also
-
attribute
sqlalchemy.orm.state.InstanceState.
detached¶ Return
True
if the object is detached.See also
-
attribute
sqlalchemy.orm.state.InstanceState.
dict¶ Return the instance dict used by the object.
Under normal circumstances, this is always synonymous with the
__dict__
attribute of the mapped object, unless an alternative instrumentation system has been configured.In the case that the actual object has been garbage collected, this accessor returns a blank dictionary.
-
attribute
sqlalchemy.orm.state.InstanceState.
expired_attributes = None¶ The set of keys which are ‘expired’ to be loaded by the manager’s deferred scalar loader, assuming no pending changes.
see also the
unmodified
collection which is intersected against this set when a refresh operation occurs.
-
attribute
sqlalchemy.orm.state.InstanceState.
has_identity¶ Return
True
if this object has an identity key.This should always have the same value as the expression
state.persistent
orstate.detached
.
-
attribute
sqlalchemy.orm.state.InstanceState.
identity¶ Return the mapped identity of the mapped object. This is the primary key identity as persisted by the ORM which can always be passed directly to
Query.get()
.Returns
None
if the object has no primary key identity.
-
attribute
sqlalchemy.orm.state.InstanceState.
identity_key¶ Return the identity key for the mapped object.
This is the key used to locate the object within the
Session.identity_map
mapping. It contains the identity as returned byidentity
within it.
-
attribute
sqlalchemy.orm.state.InstanceState.
is_instance = True¶ True if this object is an instance of
InstanceState
.
-
attribute
sqlalchemy.orm.state.InstanceState.
mapper¶ Return the
Mapper
used for this mapped object.
-
attribute
sqlalchemy.orm.state.InstanceState.
object¶ Return the mapped object represented by this
InstanceState
.
-
attribute
sqlalchemy.orm.state.InstanceState.
pending¶ Return
True
if the object is pending.See also
-
attribute
sqlalchemy.orm.state.InstanceState.
persistent¶ Return
True
if the object is persistent.An object that is in the persistent state is guaranteed to be within the
Session.identity_map
of its parentSession
.Changed in version 1.1: The
InstanceState.persistent
accessor no longer returns True for an object that was “deleted” within a flush; use theInstanceState.deleted
accessor to detect this state. This allows the “persistent” state to guarantee membership in the identity map.See also
-
attribute
sqlalchemy.orm.state.InstanceState.
session¶ Return the owning
Session
for this instance, orNone
if none available.Note that the result here can in some cases be different from that of
obj in session
; an object that’s been deleted will report as notin session
, however if the transaction is still in progress, this attribute will still refer to that session. Only when the transaction is completed does the object become fully detached under normal circumstances.
-
attribute
sqlalchemy.orm.state.InstanceState.
transient¶ Return
True
if the object is transient.See also
-
attribute
sqlalchemy.orm.state.InstanceState.
unloaded¶ Return the set of keys which do not have a loaded value.
This includes expired attributes and any other attribute that was never populated or modified.
-
attribute
sqlalchemy.orm.state.InstanceState.
unloaded_expirable¶ Return the set of keys which do not have a loaded value.
This includes expired attributes and any other attribute that was never populated or modified.
-
attribute
sqlalchemy.orm.state.InstanceState.
unmodified¶ Return the set of keys which have no uncommitted changes
-
method
sqlalchemy.orm.state.InstanceState.
unmodified_intersection(keys)¶ Return self.unmodified.intersection(keys).
-
attribute
sqlalchemy.orm.state.InstanceState.
was_deleted¶ Return True if this object is or was previously in the “deleted” state and has not been reverted to persistent.
This flag returns True once the object was deleted in flush. When the object is expunged from the session either explicitly or via transaction commit and enters the “detached” state, this flag will continue to report True.
New in version 1.1: - added a local method form of
was_deleted()
.
-
attribute
- class sqlalchemy.orm.attributes.InstrumentedAttribute(class_, key, impl=None, comparator=None, parententity=None, of_type=None)¶
Class bound instrumented attribute which adds basic descriptor methods.
See
QueryableAttribute
for a description of most features.Members
Class signature
class
sqlalchemy.orm.attributes.InstrumentedAttribute
(sqlalchemy.orm.attributes.QueryableAttribute
)-
method
sqlalchemy.orm.attributes.InstrumentedAttribute.
__delete__(instance)¶
-
method
sqlalchemy.orm.attributes.InstrumentedAttribute.
__get__(instance, owner)¶
-
method
sqlalchemy.orm.attributes.InstrumentedAttribute.
__set__(instance, value)¶
-
method
- sqlalchemy.orm.interfaces.MANYTOONE = symbol('MANYTOONE')¶
Indicates the many-to-one direction for a
relationship()
.This symbol is typically used by the internals but may be exposed within certain API features.
- sqlalchemy.orm.interfaces.MANYTOMANY = symbol('MANYTOMANY')¶
Indicates the many-to-many direction for a
relationship()
.This symbol is typically used by the internals but may be exposed within certain API features.
- class sqlalchemy.orm.interfaces.MapperProperty¶
Represent a particular class attribute mapped by
Mapper
.The most common occurrences of
MapperProperty
are the mappedColumn
, which is represented in a mapping as an instance ofColumnProperty
, and a reference to another class produced byrelationship()
, represented in the mapping as an instance ofRelationshipProperty
.Members
info, cascade, cascade_iterator(), class_attribute, create_row_processor(), do_init(), init(), instrument_class(), is_property, merge(), post_instrument_class(), set_parent(), setup()
Class signature
class
sqlalchemy.orm.MapperProperty
(sqlalchemy.orm.base._MappedAttribute
,sqlalchemy.orm.base.InspectionAttr
,sqlalchemy.util.langhelpers.MemoizedSlots
)-
attribute
sqlalchemy.orm.interfaces.MapperProperty.
info¶ Info dictionary associated with the object, allowing user-defined data to be associated with this
InspectionAttr
.The dictionary is generated when first accessed. Alternatively, it can be specified as a constructor argument to the
column_property()
,relationship()
, orcomposite()
functions.Changed in version 1.0.0:
InspectionAttr.info
moved fromMapperProperty
so that it can apply to a wider variety of ORM and extension constructs.
-
attribute
sqlalchemy.orm.interfaces.MapperProperty.
cascade = frozenset({})¶ The set of ‘cascade’ attribute names.
This collection is checked before the ‘cascade_iterator’ method is called.
The collection typically only applies to a RelationshipProperty.
-
method
sqlalchemy.orm.interfaces.MapperProperty.
cascade_iterator(type_, state, visited_instances=None, halt_on=None)¶ Iterate through instances related to the given instance for a particular ‘cascade’, starting with this MapperProperty.
Return an iterator3-tuples (instance, mapper, state).
Note that the ‘cascade’ collection on this MapperProperty is checked first for the given type before cascade_iterator is called.
This method typically only applies to RelationshipProperty.
-
attribute
sqlalchemy.orm.interfaces.MapperProperty.
class_attribute¶ Return the class-bound descriptor corresponding to this
MapperProperty
.This is basically a
getattr()
call:return getattr(self.parent.class_, self.key)
I.e. if this
MapperProperty
were namedaddresses
, and the class to which it is mapped isUser
, this sequence is possible:>>> from sqlalchemy import inspect >>> mapper = inspect(User) >>> addresses_property = mapper.attrs.addresses >>> addresses_property.class_attribute is User.addresses True >>> User.addresses.property is addresses_property True
-
method
sqlalchemy.orm.interfaces.MapperProperty.
create_row_processor(context, path, mapper, result, adapter, populators)¶ Produce row processing functions and append to the given set of populators lists.
-
method
sqlalchemy.orm.interfaces.MapperProperty.
do_init()¶ Perform subclass-specific initialization post-mapper-creation steps.
This is a template method called by the
MapperProperty
object’s init() method.
-
method
sqlalchemy.orm.interfaces.MapperProperty.
init()¶ Called after all mappers are created to assemble relationships between mappers and perform other post-mapper-creation initialization steps.
-
method
sqlalchemy.orm.interfaces.MapperProperty.
instrument_class(mapper)¶ Hook called by the Mapper to the property to initiate instrumentation of the class attribute managed by this MapperProperty.
The MapperProperty here will typically call out to the attributes module to set up an InstrumentedAttribute.
This step is the first of two steps to set up an InstrumentedAttribute, and is called early in the mapper setup process.
The second step is typically the init_class_attribute step, called from StrategizedProperty via the post_instrument_class() hook. This step assigns additional state to the InstrumentedAttribute (specifically the “impl”) which has been determined after the MapperProperty has determined what kind of persistence management it needs to do (e.g. scalar, object, collection, etc).
-
attribute
sqlalchemy.orm.interfaces.MapperProperty.
is_property = True¶ Part of the InspectionAttr interface; states this object is a mapper property.
-
method
sqlalchemy.orm.interfaces.MapperProperty.
merge(session, source_state, source_dict, dest_state, dest_dict, load, _recursive, _resolve_conflict_map)¶ Merge the attribute represented by this
MapperProperty
from source to destination object.
-
method
sqlalchemy.orm.interfaces.MapperProperty.
post_instrument_class(mapper)¶ Perform instrumentation adjustments that need to occur after init() has completed.
The given Mapper is the Mapper invoking the operation, which may not be the same Mapper as self.parent in an inheritance scenario; however, Mapper will always at least be a sub-mapper of self.parent.
This method is typically used by StrategizedProperty, which delegates it to LoaderStrategy.init_class_attribute() to perform final setup on the class-bound InstrumentedAttribute.
-
method
sqlalchemy.orm.interfaces.MapperProperty.
set_parent(parent, init)¶ Set the parent mapper that references this MapperProperty.
This method is overridden by some subclasses to perform extra setup when the mapper is first known.
-
method
sqlalchemy.orm.interfaces.MapperProperty.
setup(context, query_entity, path, adapter, **kwargs)¶ Called by Query for the purposes of constructing a SQL statement.
Each MapperProperty associated with the target mapper processes the statement referenced by the query context, adding columns and/or criterion as appropriate.
-
attribute
- sqlalchemy.orm.interfaces.NOT_EXTENSION = symbol('NOT_EXTENSION')¶
Symbol indicating an
InspectionAttr
that’s not part of sqlalchemy.ext.Is assigned to the
InspectionAttr.extension_type
attribute.
- sqlalchemy.orm.interfaces.ONETOMANY = symbol('ONETOMANY')¶
Indicates the one-to-many direction for a
relationship()
.This symbol is typically used by the internals but may be exposed within certain API features.
- class sqlalchemy.orm.PropComparator(prop, parentmapper, adapt_to_entity=None)¶
Defines SQL operators for
MapperProperty
objects.SQLAlchemy allows for operators to be redefined at both the Core and ORM level.
PropComparator
is the base class of operator redefinition for ORM-level operations, including those ofColumnProperty
,RelationshipProperty
, andCompositeProperty
.Note
With the advent of Hybrid properties introduced in SQLAlchemy 0.7, as well as Core-level operator redefinition in SQLAlchemy 0.8, the use case for user-defined
PropComparator
instances is extremely rare. See Hybrid Attributes as well as Redefining and Creating New Operators.User-defined subclasses of
PropComparator
may be created. The built-in Python comparison and math operator methods, such asColumnOperators.__eq__()
,ColumnOperators.__lt__()
, andColumnOperators.__add__()
, can be overridden to provide new operator behavior. The customPropComparator
is passed to theMapperProperty
instance via thecomparator_factory
argument. In each case, the appropriate subclass ofPropComparator
should be used:# definition of custom PropComparator subclasses from sqlalchemy.orm.properties import \ ColumnProperty,\ CompositeProperty,\ RelationshipProperty class MyColumnComparator(ColumnProperty.Comparator): def __eq__(self, other): return self.__clause_element__() == other class MyRelationshipComparator(RelationshipProperty.Comparator): def any(self, expression): "define the 'any' operation" # ... class MyCompositeComparator(CompositeProperty.Comparator): def __gt__(self, other): "redefine the 'greater than' operation" return sql.and_(*[a>b for a, b in zip(self.__clause_element__().clauses, other.__composite_values__())]) # application of custom PropComparator subclasses from sqlalchemy.orm import column_property, relationship, composite from sqlalchemy import Column, String class SomeMappedClass(Base): some_column = column_property(Column("some_column", String), comparator_factory=MyColumnComparator) some_relationship = relationship(SomeOtherClass, comparator_factory=MyRelationshipComparator) some_composite = composite( Column("a", String), Column("b", String), comparator_factory=MyCompositeComparator )
Note that for column-level operator redefinition, it’s usually simpler to define the operators at the Core level, using the
TypeEngine.comparator_factory
attribute. See Redefining and Creating New Operators for more detail.Members
__eq__(), __le__(), __lt__(), __ne__(), adapt_to_entity(), adapter, all_(), any(), any_(), asc(), between(), bool_op(), collate(), concat(), contains(), desc(), distinct(), endswith(), has(), ilike(), in_(), is_(), is_distinct_from(), isnot(), isnot_distinct_from(), like(), match(), notilike(), notin_(), notlike(), nullsfirst(), nullslast(), of_type(), op(), operate(), reverse_operate(), startswith(), timetuple
Class signature
class
sqlalchemy.orm.PropComparator
(sqlalchemy.sql.operators.ColumnOperators
)-
method
sqlalchemy.orm.PropComparator.
__eq__(other)¶ inherited from the
sqlalchemy.sql.operators.ColumnOperators.__eq__
method ofColumnOperators
Implement the
==
operator.In a column context, produces the clause
a = b
. If the target isNone
, producesa IS NULL
.
-
method
sqlalchemy.orm.PropComparator.
__le__(other)¶ inherited from the
sqlalchemy.sql.operators.ColumnOperators.__le__
method ofColumnOperators
Implement the
<=
operator.In a column context, produces the clause
a <= b
.
-
method
sqlalchemy.orm.PropComparator.
__lt__(other)¶ inherited from the
sqlalchemy.sql.operators.ColumnOperators.__lt__
method ofColumnOperators
Implement the
<
operator.In a column context, produces the clause
a < b
.
-
method
sqlalchemy.orm.PropComparator.
__ne__(other)¶ inherited from the
sqlalchemy.sql.operators.ColumnOperators.__ne__
method ofColumnOperators
Implement the
!=
operator.In a column context, produces the clause
a != b
. If the target isNone
, producesa IS NOT NULL
.
-
method
sqlalchemy.orm.PropComparator.
adapt_to_entity(adapt_to_entity)¶ Return a copy of this PropComparator which will use the given
AliasedInsp
to produce corresponding expressions.
-
attribute
sqlalchemy.orm.PropComparator.
adapter¶ Produce a callable that adapts column expressions to suit an aliased version of this comparator.
-
method
sqlalchemy.orm.PropComparator.
all_()¶ inherited from the
ColumnOperators.all_()
method ofColumnOperators
Produce a
all_()
clause against the parent object.This operator is only appropriate against a scalar subquery object, or for some backends an column expression that is against the ARRAY type, e.g.:
# postgresql '5 = ALL (somearray)' expr = 5 == mytable.c.somearray.all_() # mysql '5 = ALL (SELECT value FROM table)' expr = 5 == select([table.c.value]).as_scalar().all_()
New in version 1.1.
-
method
sqlalchemy.orm.PropComparator.
any(criterion=None, **kwargs)¶ Return true if this collection contains any member that meets the given criterion.
The usual implementation of
any()
isComparator.any()
.- Parameters:
criterion – an optional ClauseElement formulated against the member class’ table or attributes.
**kwargs – key/value pairs corresponding to member class attribute names which will be compared via equality to the corresponding values.
-
method
sqlalchemy.orm.PropComparator.
any_()¶ inherited from the
ColumnOperators.any_()
method ofColumnOperators
Produce a
any_()
clause against the parent object.This operator is only appropriate against a scalar subquery object, or for some backends an column expression that is against the ARRAY type, e.g.:
# postgresql '5 = ANY (somearray)' expr = 5 == mytable.c.somearray.any_() # mysql '5 = ANY (SELECT value FROM table)' expr = 5 == select([table.c.value]).as_scalar().any_()
New in version 1.1.
-
method
sqlalchemy.orm.PropComparator.
asc()¶ inherited from the
ColumnOperators.asc()
method ofColumnOperators
Produce a
asc()
clause against the parent object.
-
method
sqlalchemy.orm.PropComparator.
between(cleft, cright, symmetric=False)¶ inherited from the
ColumnOperators.between()
method ofColumnOperators
Produce a
between()
clause against the parent object, given the lower and upper range.
-
method
sqlalchemy.orm.PropComparator.
bool_op(opstring, precedence=0)¶ inherited from the
Operators.bool_op()
method ofOperators
Return a custom boolean operator.
This method is shorthand for calling
Operators.op()
and passing theOperators.op.is_comparison
flag with True.New in version 1.2.0b3.
See also
-
method
sqlalchemy.orm.PropComparator.
collate(collation)¶ inherited from the
ColumnOperators.collate()
method ofColumnOperators
Produce a
collate()
clause against the parent object, given the collation string.See also
-
method
sqlalchemy.orm.PropComparator.
concat(other)¶ inherited from the
ColumnOperators.concat()
method ofColumnOperators
Implement the ‘concat’ operator.
In a column context, produces the clause
a || b
, or uses theconcat()
operator on MySQL.
-
method
sqlalchemy.orm.PropComparator.
contains(other, **kwargs)¶ inherited from the
ColumnOperators.contains()
method ofColumnOperators
Implement the ‘contains’ operator.
Produces a LIKE expression that tests against a match for the middle of a string value:
column LIKE '%' || <other> || '%'
E.g.:
stmt = select([sometable]).\ where(sometable.c.column.contains("foobar"))
Since the operator uses
LIKE
, wildcard characters"%"
and"_"
that are present inside the <other> expression will behave like wildcards as well. For literal string values, theColumnOperators.contains.autoescape
flag may be set toTrue
to apply escaping to occurrences of these characters within the string value so that they match as themselves and not as wildcard characters. Alternatively, theColumnOperators.contains.escape
parameter will establish a given character as an escape character which can be of use when the target expression is not a literal string.- Parameters:
other – expression to be compared. This is usually a plain string value, but can also be an arbitrary SQL expression. LIKE wildcard characters
%
and_
are not escaped by default unless theColumnOperators.contains.autoescape
flag is set to True.autoescape –
boolean; when True, establishes an escape character within the LIKE expression, then applies it to all occurrences of
"%"
,"_"
and the escape character itself within the comparison value, which is assumed to be a literal string and not a SQL expression.An expression such as:
somecolumn.contains("foo%bar", autoescape=True)
Will render as:
somecolumn LIKE '%' || :param || '%' ESCAPE '/'
With the value of
:param
as"foo/%bar"
.New in version 1.2.
Changed in version 1.2.0: The
ColumnOperators.contains.autoescape
parameter is now a simple boolean rather than a character; the escape character itself is also escaped, and defaults to a forwards slash, which itself can be customized using theColumnOperators.contains.escape
parameter.escape –
a character which when given will render with the
ESCAPE
keyword to establish that character as the escape character. This character can then be placed preceding occurrences of%
and_
to allow them to act as themselves and not wildcard characters.An expression such as:
somecolumn.contains("foo/%bar", escape="^")
Will render as:
somecolumn LIKE '%' || :param || '%' ESCAPE '^'
The parameter may also be combined with
ColumnOperators.contains.autoescape
:somecolumn.contains("foo%bar^bat", escape="^", autoescape=True)
Where above, the given literal parameter will be converted to
"foo^%bar^^bat"
before being passed to the database.
-
method
sqlalchemy.orm.PropComparator.
desc()¶ inherited from the
ColumnOperators.desc()
method ofColumnOperators
Produce a
desc()
clause against the parent object.
-
method
sqlalchemy.orm.PropComparator.
distinct()¶ inherited from the
ColumnOperators.distinct()
method ofColumnOperators
Produce a
distinct()
clause against the parent object.
-
method
sqlalchemy.orm.PropComparator.
endswith(other, **kwargs)¶ inherited from the
ColumnOperators.endswith()
method ofColumnOperators
Implement the ‘endswith’ operator.
Produces a LIKE expression that tests against a match for the end of a string value:
column LIKE '%' || <other>
E.g.:
stmt = select([sometable]).\ where(sometable.c.column.endswith("foobar"))
Since the operator uses
LIKE
, wildcard characters"%"
and"_"
that are present inside the <other> expression will behave like wildcards as well. For literal string values, theColumnOperators.endswith.autoescape
flag may be set toTrue
to apply escaping to occurrences of these characters within the string value so that they match as themselves and not as wildcard characters. Alternatively, theColumnOperators.endswith.escape
parameter will establish a given character as an escape character which can be of use when the target expression is not a literal string.- Parameters:
other – expression to be compared. This is usually a plain string value, but can also be an arbitrary SQL expression. LIKE wildcard characters
%
and_
are not escaped by default unless theColumnOperators.endswith.autoescape
flag is set to True.autoescape –
boolean; when True, establishes an escape character within the LIKE expression, then applies it to all occurrences of
"%"
,"_"
and the escape character itself within the comparison value, which is assumed to be a literal string and not a SQL expression.An expression such as:
somecolumn.endswith("foo%bar", autoescape=True)
Will render as:
somecolumn LIKE '%' || :param ESCAPE '/'
With the value of
:param
as"foo/%bar"
.New in version 1.2.
Changed in version 1.2.0: The
ColumnOperators.endswith.autoescape
parameter is now a simple boolean rather than a character; the escape character itself is also escaped, and defaults to a forwards slash, which itself can be customized using theColumnOperators.endswith.escape
parameter.escape –
a character which when given will render with the
ESCAPE
keyword to establish that character as the escape character. This character can then be placed preceding occurrences of%
and_
to allow them to act as themselves and not wildcard characters.An expression such as:
somecolumn.endswith("foo/%bar", escape="^")
Will render as:
somecolumn LIKE '%' || :param ESCAPE '^'
The parameter may also be combined with
ColumnOperators.endswith.autoescape
:somecolumn.endswith("foo%bar^bat", escape="^", autoescape=True)
Where above, the given literal parameter will be converted to
"foo^%bar^^bat"
before being passed to the database.
-
method
sqlalchemy.orm.PropComparator.
has(criterion=None, **kwargs)¶ Return true if this element references a member which meets the given criterion.
The usual implementation of
has()
isComparator.has()
.- Parameters:
criterion – an optional ClauseElement formulated against the member class’ table or attributes.
**kwargs – key/value pairs corresponding to member class attribute names which will be compared via equality to the corresponding values.
-
method
sqlalchemy.orm.PropComparator.
ilike(other, escape=None)¶ inherited from the
ColumnOperators.ilike()
method ofColumnOperators
Implement the
ilike
operator, e.g. case insensitive LIKE.In a column context, produces an expression either of the form:
lower(a) LIKE lower(other)
Or on backends that support the ILIKE operator:
a ILIKE other
E.g.:
stmt = select([sometable]).\ where(sometable.c.column.ilike("%foobar%"))
- Parameters:
other – expression to be compared
escape –
optional escape character, renders the
ESCAPE
keyword, e.g.:somecolumn.ilike("foo/%bar", escape="/")
See also
-
method
sqlalchemy.orm.PropComparator.
in_(other)¶ inherited from the
ColumnOperators.in_()
method ofColumnOperators
Implement the
in
operator.In a column context, produces the clause
column IN <other>
.The given parameter
other
may be:A list of literal values, e.g.:
stmt.where(column.in_([1, 2, 3]))
In this calling form, the list of items is converted to a set of bound parameters the same length as the list given:
WHERE COL IN (?, ?, ?)
A list of tuples may be provided if the comparison is against a
tuple_()
containing multiple expressions:from sqlalchemy import tuple_ stmt.where(tuple_(col1, col2).in_([(1, 10), (2, 20), (3, 30)]))
An empty list, e.g.:
stmt.where(column.in_([]))
In this calling form, the expression renders a “false” expression, e.g.:
WHERE 1 != 1
This “false” expression has historically had different behaviors in older SQLAlchemy versions, see
create_engine.empty_in_strategy
for behavioral options.Changed in version 1.2: simplified the behavior of “empty in” expressions
A bound parameter, e.g.
bindparam()
, may be used if it includes thebindparam.expanding
flag:stmt.where(column.in_(bindparam('value', expanding=True)))
In this calling form, the expression renders a special non-SQL placeholder expression that looks like:
WHERE COL IN ([EXPANDING_value])
This placeholder expression is intercepted at statement execution time to be converted into the variable number of bound parameter form illustrated earlier. If the statement were executed as:
connection.execute(stmt, {"value": [1, 2, 3]})
The database would be passed a bound parameter for each value:
WHERE COL IN (?, ?, ?)
New in version 1.2: added “expanding” bound parameters
If an empty list is passed, a special “empty list” expression, which is specific to the database in use, is rendered. On SQLite this would be:
WHERE COL IN (SELECT 1 FROM (SELECT 1) WHERE 1!=1)
New in version 1.3: “expanding” bound parameters now support empty lists
a
select()
construct, which is usually a correlated scalar select:stmt.where( column.in_( select([othertable.c.y]). where(table.c.x == othertable.c.x) ) )
In this calling form,
ColumnOperators.in_()
renders as given:WHERE COL IN (SELECT othertable.y FROM othertable WHERE othertable.x = table.x)
- Parameters:
other – a list of literals, a
select()
construct, or abindparam()
construct that includes thebindparam.expanding
flag set to True.
-
method
sqlalchemy.orm.PropComparator.
is_(other)¶ inherited from the
ColumnOperators.is_()
method ofColumnOperators
Implement the
IS
operator.Normally,
IS
is generated automatically when comparing to a value ofNone
, which resolves toNULL
. However, explicit usage ofIS
may be desirable if comparing to boolean values on certain platforms.See also
-
method
sqlalchemy.orm.PropComparator.
is_distinct_from(other)¶ inherited from the
ColumnOperators.is_distinct_from()
method ofColumnOperators
Implement the
IS DISTINCT FROM
operator.Renders “a IS DISTINCT FROM b” on most platforms; on some such as SQLite may render “a IS NOT b”.
New in version 1.1.
-
method
sqlalchemy.orm.PropComparator.
isnot(other)¶ inherited from the
ColumnOperators.isnot()
method ofColumnOperators
Implement the
IS NOT
operator.Normally,
IS NOT
is generated automatically when comparing to a value ofNone
, which resolves toNULL
. However, explicit usage ofIS NOT
may be desirable if comparing to boolean values on certain platforms.See also
-
method
sqlalchemy.orm.PropComparator.
isnot_distinct_from(other)¶ inherited from the
ColumnOperators.isnot_distinct_from()
method ofColumnOperators
Implement the
IS NOT DISTINCT FROM
operator.Renders “a IS NOT DISTINCT FROM b” on most platforms; on some such as SQLite may render “a IS b”.
New in version 1.1.
-
method
sqlalchemy.orm.PropComparator.
like(other, escape=None)¶ inherited from the
ColumnOperators.like()
method ofColumnOperators
Implement the
like
operator.In a column context, produces the expression:
a LIKE other
E.g.:
stmt = select([sometable]).\ where(sometable.c.column.like("%foobar%"))
- Parameters:
other – expression to be compared
escape –
optional escape character, renders the
ESCAPE
keyword, e.g.:somecolumn.like("foo/%bar", escape="/")
See also
-
method
sqlalchemy.orm.PropComparator.
match(other, **kwargs)¶ inherited from the
ColumnOperators.match()
method ofColumnOperators
Implements a database-specific ‘match’ operator.
ColumnOperators.match()
attempts to resolve to a MATCH-like function or operator provided by the backend. Examples include:PostgreSQL - renders
x @@ to_tsquery(y)
MySQL - renders
MATCH (x) AGAINST (y IN BOOLEAN MODE)
Oracle - renders
CONTAINS(x, y)
other backends may provide special implementations.
Backends without any special implementation will emit the operator as “MATCH”. This is compatible with SQLite, for example.
-
method
sqlalchemy.orm.PropComparator.
notilike(other, escape=None)¶ inherited from the
ColumnOperators.notilike()
method ofColumnOperators
implement the
NOT ILIKE
operator.This is equivalent to using negation with
ColumnOperators.ilike()
, i.e.~x.ilike(y)
.See also
-
method
sqlalchemy.orm.PropComparator.
notin_(other)¶ inherited from the
ColumnOperators.notin_()
method ofColumnOperators
implement the
NOT IN
operator.This is equivalent to using negation with
ColumnOperators.in_()
, i.e.~x.in_(y)
.In the case that
other
is an empty sequence, the compiler produces an “empty not in” expression. This defaults to the expression “1 = 1” to produce true in all cases. Thecreate_engine.empty_in_strategy
may be used to alter this behavior.Changed in version 1.2: The
ColumnOperators.in_()
andColumnOperators.notin_()
operators now produce a “static” expression for an empty IN sequence by default.See also
-
method
sqlalchemy.orm.PropComparator.
notlike(other, escape=None)¶ inherited from the
ColumnOperators.notlike()
method ofColumnOperators
implement the
NOT LIKE
operator.This is equivalent to using negation with
ColumnOperators.like()
, i.e.~x.like(y)
.See also
-
method
sqlalchemy.orm.PropComparator.
nullsfirst()¶ inherited from the
ColumnOperators.nullsfirst()
method ofColumnOperators
Produce a
nullsfirst()
clause against the parent object.
-
method
sqlalchemy.orm.PropComparator.
nullslast()¶ inherited from the
ColumnOperators.nullslast()
method ofColumnOperators
Produce a
nullslast()
clause against the parent object.
-
method
sqlalchemy.orm.PropComparator.
of_type(class_)¶ Redefine this object in terms of a polymorphic subclass,
with_polymorphic()
construct, oraliased()
construct.Returns a new PropComparator from which further criterion can be evaluated.
e.g.:
query.join(Company.employees.of_type(Engineer)).\ filter(Engineer.name=='foo')
- Parameters:
class_ – a class or mapper indicating that criterion will be against this specific subclass.
-
method
sqlalchemy.orm.PropComparator.
op(opstring, precedence=0, is_comparison=False, return_type=None)¶ inherited from the
Operators.op()
method ofOperators
Produce a generic operator function.
e.g.:
somecolumn.op("*")(5)
produces:
somecolumn * 5
This function can also be used to make bitwise operators explicit. For example:
somecolumn.op('&')(0xff)
is a bitwise AND of the value in
somecolumn
.- Parameters:
operator – a string which will be output as the infix operator between this element and the expression passed to the generated function.
precedence – precedence to apply to the operator, when parenthesizing expressions. A lower number will cause the expression to be parenthesized when applied against another operator with higher precedence. The default value of
0
is lower than all operators except for the comma (,
) andAS
operators. A value of 100 will be higher or equal to all operators, and -100 will be lower than or equal to all operators.is_comparison –
if True, the operator will be considered as a “comparison” operator, that is which evaluates to a boolean true/false value, like
==
,>
, etc. This flag should be set so that ORM relationships can establish that the operator is a comparison operator when used in a custom join condition.New in version 0.9.2: - added the
Operators.op.is_comparison
flag.return_type –
a
TypeEngine
class or object that will force the return type of an expression produced by this operator to be of that type. By default, operators that specifyOperators.op.is_comparison
will resolve toBoolean
, and those that do not will be of the same type as the left-hand operand.New in version 1.2.0b3: - added the
Operators.op.return_type
argument.
-
method
sqlalchemy.orm.PropComparator.
operate(op, *other, **kwargs)¶ inherited from the
Operators.operate()
method ofOperators
Operate on an argument.
This is the lowest level of operation, raises
NotImplementedError
by default.Overriding this on a subclass can allow common behavior to be applied to all operations. For example, overriding
ColumnOperators
to applyfunc.lower()
to the left and right side:class MyComparator(ColumnOperators): def operate(self, op, other): return op(func.lower(self), func.lower(other))
- Parameters:
op – Operator callable.
*other – the ‘other’ side of the operation. Will be a single scalar for most operations.
**kwargs – modifiers. These may be passed by special operators such as
ColumnOperators.contains()
.
-
method
sqlalchemy.orm.PropComparator.
reverse_operate(op, other, **kwargs)¶ inherited from the
Operators.reverse_operate()
method ofOperators
Reverse operate on an argument.
Usage is the same as
operate()
.
-
method
sqlalchemy.orm.PropComparator.
startswith(other, **kwargs)¶ inherited from the
ColumnOperators.startswith()
method ofColumnOperators
Implement the
startswith
operator.Produces a LIKE expression that tests against a match for the start of a string value:
column LIKE <other> || '%'
E.g.:
stmt = select([sometable]).\ where(sometable.c.column.startswith("foobar"))
Since the operator uses
LIKE
, wildcard characters"%"
and"_"
that are present inside the <other> expression will behave like wildcards as well. For literal string values, theColumnOperators.startswith.autoescape
flag may be set toTrue
to apply escaping to occurrences of these characters within the string value so that they match as themselves and not as wildcard characters. Alternatively, theColumnOperators.startswith.escape
parameter will establish a given character as an escape character which can be of use when the target expression is not a literal string.- Parameters:
other – expression to be compared. This is usually a plain string value, but can also be an arbitrary SQL expression. LIKE wildcard characters
%
and_
are not escaped by default unless theColumnOperators.startswith.autoescape
flag is set to True.autoescape –
boolean; when True, establishes an escape character within the LIKE expression, then applies it to all occurrences of
"%"
,"_"
and the escape character itself within the comparison value, which is assumed to be a literal string and not a SQL expression.An expression such as:
somecolumn.startswith("foo%bar", autoescape=True)
Will render as:
somecolumn LIKE :param || '%' ESCAPE '/'
With the value of
:param
as"foo/%bar"
.New in version 1.2.
Changed in version 1.2.0: The
ColumnOperators.startswith.autoescape
parameter is now a simple boolean rather than a character; the escape character itself is also escaped, and defaults to a forwards slash, which itself can be customized using theColumnOperators.startswith.escape
parameter.escape –
a character which when given will render with the
ESCAPE
keyword to establish that character as the escape character. This character can then be placed preceding occurrences of%
and_
to allow them to act as themselves and not wildcard characters.An expression such as:
somecolumn.startswith("foo/%bar", escape="^")
Will render as:
somecolumn LIKE :param || '%' ESCAPE '^'
The parameter may also be combined with
ColumnOperators.startswith.autoescape
:somecolumn.startswith("foo%bar^bat", escape="^", autoescape=True)
Where above, the given literal parameter will be converted to
"foo^%bar^^bat"
before being passed to the database.
-
attribute
sqlalchemy.orm.PropComparator.
timetuple = None¶ inherited from the
ColumnOperators.timetuple
attribute ofColumnOperators
Hack, allows datetime objects to be compared on the LHS.
-
method
- class sqlalchemy.orm.RelationshipProperty(argument, secondary=None, primaryjoin=None, secondaryjoin=None, foreign_keys=None, uselist=None, order_by=False, backref=None, back_populates=None, post_update=False, cascade=False, extension=None, viewonly=False, lazy='select', collection_class=None, passive_deletes=False, passive_updates=True, remote_side=None, enable_typechecks=True, join_depth=None, comparator_factory=None, single_parent=False, innerjoin=False, distinct_target_key=None, doc=None, active_history=False, cascade_backrefs=True, load_on_pending=False, bake_queries=True, _local_remote_pairs=None, query_class=None, info=None, omit_join=None, sync_backref=None)¶
Describes an object property that holds a single item or list of items that correspond to a related database table.
Public constructor is the
relationship()
function.See also
Members
__eq__(), __init__(), __le__(), __lt__(), __ne__(), adapt_to_entity(), adapter, all_(), any(), any_(), asc(), between(), bool_op(), collate(), concat(), contains(), desc(), distinct(), endswith(), entity, has(), ilike(), in_(), is_(), is_distinct_from(), isnot(), isnot_distinct_from(), like(), mapper, match(), notilike(), notin_(), notlike(), nullsfirst(), nullslast(), of_type(), op(), operate(), reverse_operate(), startswith(), timetuple, __init__(), cascade, cascade_iterator(), class_attribute, create_row_processor(), do_init(), entity, extension_type, init(), instrument_class(), is_aliased_class, is_attribute, is_clause_element, is_instance, is_mapper, is_property, is_selectable, mapper, merge(), post_instrument_class(), set_parent(), setup()
Class signature
class
sqlalchemy.orm.RelationshipProperty
(sqlalchemy.orm.StrategizedProperty
)- class Comparator(prop, parentmapper, adapt_to_entity=None, of_type=None)¶
Produce boolean, comparison, and other operators for
RelationshipProperty
attributes.See the documentation for
PropComparator
for a brief overview of ORM level operator definition.Class signature
class
sqlalchemy.orm.RelationshipProperty.Comparator
(sqlalchemy.orm.PropComparator
)-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
__eq__(other)¶ Implement the
==
operator.In a many-to-one context, such as:
MyClass.some_prop == <some object>
this will typically produce a clause such as:
mytable.related_id == <some id>
Where
<some id>
is the primary key of the given object.The
==
operator provides partial functionality for non- many-to-one comparisons:Comparisons against collections are not supported. Use
Comparator.contains()
.Compared to a scalar one-to-many, will produce a clause that compares the target columns in the parent to the given target.
Compared to a scalar many-to-many, an alias of the association table will be rendered as well, forming a natural join that is part of the main body of the query. This will not work for queries that go beyond simple AND conjunctions of comparisons, such as those which use OR. Use explicit joins, outerjoins, or
Comparator.has()
for more comprehensive non-many-to-one scalar membership tests.Comparisons against
None
given in a one-to-many or many-to-many context produce a NOT EXISTS clause.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
__init__(prop, parentmapper, adapt_to_entity=None, of_type=None)¶ Construction of
Comparator
is internal to the ORM’s attribute mechanics.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
__le__(other)¶ inherited from the
sqlalchemy.sql.operators.ColumnOperators.__le__
method ofColumnOperators
Implement the
<=
operator.In a column context, produces the clause
a <= b
.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
__lt__(other)¶ inherited from the
sqlalchemy.sql.operators.ColumnOperators.__lt__
method ofColumnOperators
Implement the
<
operator.In a column context, produces the clause
a < b
.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
__ne__(other)¶ Implement the
!=
operator.In a many-to-one context, such as:
MyClass.some_prop != <some object>
This will typically produce a clause such as:
mytable.related_id != <some id>
Where
<some id>
is the primary key of the given object.The
!=
operator provides partial functionality for non- many-to-one comparisons:Comparisons against collections are not supported. Use
Comparator.contains()
in conjunction withnot_()
.Compared to a scalar one-to-many, will produce a clause that compares the target columns in the parent to the given target.
Compared to a scalar many-to-many, an alias of the association table will be rendered as well, forming a natural join that is part of the main body of the query. This will not work for queries that go beyond simple AND conjunctions of comparisons, such as those which use OR. Use explicit joins, outerjoins, or
Comparator.has()
in conjunction withnot_()
for more comprehensive non-many-to-one scalar membership tests.Comparisons against
None
given in a one-to-many or many-to-many context produce an EXISTS clause.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
adapt_to_entity(adapt_to_entity)¶ Return a copy of this PropComparator which will use the given
AliasedInsp
to produce corresponding expressions.
-
attribute
sqlalchemy.orm.RelationshipProperty.Comparator.
adapter¶ inherited from the
PropComparator.adapter
attribute ofPropComparator
Produce a callable that adapts column expressions to suit an aliased version of this comparator.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
all_()¶ inherited from the
ColumnOperators.all_()
method ofColumnOperators
Produce a
all_()
clause against the parent object.This operator is only appropriate against a scalar subquery object, or for some backends an column expression that is against the ARRAY type, e.g.:
# postgresql '5 = ALL (somearray)' expr = 5 == mytable.c.somearray.all_() # mysql '5 = ALL (SELECT value FROM table)' expr = 5 == select([table.c.value]).as_scalar().all_()
New in version 1.1.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
any(criterion=None, **kwargs)¶ Produce an expression that tests a collection against particular criterion, using EXISTS.
An expression like:
session.query(MyClass).filter( MyClass.somereference.any(SomeRelated.x==2) )
Will produce a query like:
SELECT * FROM my_table WHERE EXISTS (SELECT 1 FROM related WHERE related.my_id=my_table.id AND related.x=2)
Because
Comparator.any()
uses a correlated subquery, its performance is not nearly as good when compared against large target tables as that of using a join.Comparator.any()
is particularly useful for testing for empty collections:session.query(MyClass).filter( ~MyClass.somereference.any() )
will produce:
SELECT * FROM my_table WHERE NOT EXISTS (SELECT 1 FROM related WHERE related.my_id=my_table.id)
Comparator.any()
is only valid for collections, i.e. arelationship()
that hasuselist=True
. For scalar references, useComparator.has()
.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
any_()¶ inherited from the
ColumnOperators.any_()
method ofColumnOperators
Produce a
any_()
clause against the parent object.This operator is only appropriate against a scalar subquery object, or for some backends an column expression that is against the ARRAY type, e.g.:
# postgresql '5 = ANY (somearray)' expr = 5 == mytable.c.somearray.any_() # mysql '5 = ANY (SELECT value FROM table)' expr = 5 == select([table.c.value]).as_scalar().any_()
New in version 1.1.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
asc()¶ inherited from the
ColumnOperators.asc()
method ofColumnOperators
Produce a
asc()
clause against the parent object.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
between(cleft, cright, symmetric=False)¶ inherited from the
ColumnOperators.between()
method ofColumnOperators
Produce a
between()
clause against the parent object, given the lower and upper range.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
bool_op(opstring, precedence=0)¶ inherited from the
Operators.bool_op()
method ofOperators
Return a custom boolean operator.
This method is shorthand for calling
Operators.op()
and passing theOperators.op.is_comparison
flag with True.New in version 1.2.0b3.
See also
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
collate(collation)¶ inherited from the
ColumnOperators.collate()
method ofColumnOperators
Produce a
collate()
clause against the parent object, given the collation string.See also
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
concat(other)¶ inherited from the
ColumnOperators.concat()
method ofColumnOperators
Implement the ‘concat’ operator.
In a column context, produces the clause
a || b
, or uses theconcat()
operator on MySQL.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
contains(other, **kwargs)¶ Return a simple expression that tests a collection for containment of a particular item.
Comparator.contains()
is only valid for a collection, i.e. arelationship()
that implements one-to-many or many-to-many withuselist=True
.When used in a simple one-to-many context, an expression like:
MyClass.contains(other)
Produces a clause like:
mytable.id == <some id>
Where
<some id>
is the value of the foreign key attribute onother
which refers to the primary key of its parent object. From this it follows thatComparator.contains()
is very useful when used with simple one-to-many operations.For many-to-many operations, the behavior of
Comparator.contains()
has more caveats. The association table will be rendered in the statement, producing an “implicit” join, that is, includes multiple tables in the FROM clause which are equated in the WHERE clause:query(MyClass).filter(MyClass.contains(other))
Produces a query like:
SELECT * FROM my_table, my_association_table AS my_association_table_1 WHERE my_table.id = my_association_table_1.parent_id AND my_association_table_1.child_id = <some id>
Where
<some id>
would be the primary key ofother
. From the above, it is clear thatComparator.contains()
will not work with many-to-many collections when used in queries that move beyond simple AND conjunctions, such as multipleComparator.contains()
expressions joined by OR. In such cases subqueries or explicit “outer joins” will need to be used instead. SeeComparator.any()
for a less-performant alternative using EXISTS, or refer toQuery.outerjoin()
as well as Querying with Joins for more details on constructing outer joins.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
desc()¶ inherited from the
ColumnOperators.desc()
method ofColumnOperators
Produce a
desc()
clause against the parent object.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
distinct()¶ inherited from the
ColumnOperators.distinct()
method ofColumnOperators
Produce a
distinct()
clause against the parent object.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
endswith(other, **kwargs)¶ inherited from the
ColumnOperators.endswith()
method ofColumnOperators
Implement the ‘endswith’ operator.
Produces a LIKE expression that tests against a match for the end of a string value:
column LIKE '%' || <other>
E.g.:
stmt = select([sometable]).\ where(sometable.c.column.endswith("foobar"))
Since the operator uses
LIKE
, wildcard characters"%"
and"_"
that are present inside the <other> expression will behave like wildcards as well. For literal string values, theColumnOperators.endswith.autoescape
flag may be set toTrue
to apply escaping to occurrences of these characters within the string value so that they match as themselves and not as wildcard characters. Alternatively, theColumnOperators.endswith.escape
parameter will establish a given character as an escape character which can be of use when the target expression is not a literal string.- Parameters:
other – expression to be compared. This is usually a plain string value, but can also be an arbitrary SQL expression. LIKE wildcard characters
%
and_
are not escaped by default unless theColumnOperators.endswith.autoescape
flag is set to True.autoescape –
boolean; when True, establishes an escape character within the LIKE expression, then applies it to all occurrences of
"%"
,"_"
and the escape character itself within the comparison value, which is assumed to be a literal string and not a SQL expression.An expression such as:
somecolumn.endswith("foo%bar", autoescape=True)
Will render as:
somecolumn LIKE '%' || :param ESCAPE '/'
With the value of
:param
as"foo/%bar"
.New in version 1.2.
Changed in version 1.2.0: The
ColumnOperators.endswith.autoescape
parameter is now a simple boolean rather than a character; the escape character itself is also escaped, and defaults to a forwards slash, which itself can be customized using theColumnOperators.endswith.escape
parameter.escape –
a character which when given will render with the
ESCAPE
keyword to establish that character as the escape character. This character can then be placed preceding occurrences of%
and_
to allow them to act as themselves and not wildcard characters.An expression such as:
somecolumn.endswith("foo/%bar", escape="^")
Will render as:
somecolumn LIKE '%' || :param ESCAPE '^'
The parameter may also be combined with
ColumnOperators.endswith.autoescape
:somecolumn.endswith("foo%bar^bat", escape="^", autoescape=True)
Where above, the given literal parameter will be converted to
"foo^%bar^^bat"
before being passed to the database.
-
attribute
sqlalchemy.orm.RelationshipProperty.Comparator.
entity¶ The target entity referred to by this
Comparator
.This is either a
Mapper
orAliasedInsp
object.This is the “target” or “remote” side of the
relationship()
.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
has(criterion=None, **kwargs)¶ Produce an expression that tests a scalar reference against particular criterion, using EXISTS.
An expression like:
session.query(MyClass).filter( MyClass.somereference.has(SomeRelated.x==2) )
Will produce a query like:
SELECT * FROM my_table WHERE EXISTS (SELECT 1 FROM related WHERE related.id==my_table.related_id AND related.x=2)
Because
Comparator.has()
uses a correlated subquery, its performance is not nearly as good when compared against large target tables as that of using a join.Comparator.has()
is only valid for scalar references, i.e. arelationship()
that hasuselist=False
. For collection references, useComparator.any()
.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
ilike(other, escape=None)¶ inherited from the
ColumnOperators.ilike()
method ofColumnOperators
Implement the
ilike
operator, e.g. case insensitive LIKE.In a column context, produces an expression either of the form:
lower(a) LIKE lower(other)
Or on backends that support the ILIKE operator:
a ILIKE other
E.g.:
stmt = select([sometable]).\ where(sometable.c.column.ilike("%foobar%"))
- Parameters:
other – expression to be compared
escape –
optional escape character, renders the
ESCAPE
keyword, e.g.:somecolumn.ilike("foo/%bar", escape="/")
See also
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
in_(other)¶ Produce an IN clause - this is not implemented for
relationship()
-based attributes at this time.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
is_(other)¶ inherited from the
ColumnOperators.is_()
method ofColumnOperators
Implement the
IS
operator.Normally,
IS
is generated automatically when comparing to a value ofNone
, which resolves toNULL
. However, explicit usage ofIS
may be desirable if comparing to boolean values on certain platforms.See also
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
is_distinct_from(other)¶ inherited from the
ColumnOperators.is_distinct_from()
method ofColumnOperators
Implement the
IS DISTINCT FROM
operator.Renders “a IS DISTINCT FROM b” on most platforms; on some such as SQLite may render “a IS NOT b”.
New in version 1.1.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
isnot(other)¶ inherited from the
ColumnOperators.isnot()
method ofColumnOperators
Implement the
IS NOT
operator.Normally,
IS NOT
is generated automatically when comparing to a value ofNone
, which resolves toNULL
. However, explicit usage ofIS NOT
may be desirable if comparing to boolean values on certain platforms.See also
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
isnot_distinct_from(other)¶ inherited from the
ColumnOperators.isnot_distinct_from()
method ofColumnOperators
Implement the
IS NOT DISTINCT FROM
operator.Renders “a IS NOT DISTINCT FROM b” on most platforms; on some such as SQLite may render “a IS b”.
New in version 1.1.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
like(other, escape=None)¶ inherited from the
ColumnOperators.like()
method ofColumnOperators
Implement the
like
operator.In a column context, produces the expression:
a LIKE other
E.g.:
stmt = select([sometable]).\ where(sometable.c.column.like("%foobar%"))
- Parameters:
other – expression to be compared
escape –
optional escape character, renders the
ESCAPE
keyword, e.g.:somecolumn.like("foo/%bar", escape="/")
See also
-
attribute
sqlalchemy.orm.RelationshipProperty.Comparator.
mapper¶ The target
Mapper
referred to by thisComparator
.This is the “target” or “remote” side of the
relationship()
.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
match(other, **kwargs)¶ inherited from the
ColumnOperators.match()
method ofColumnOperators
Implements a database-specific ‘match’ operator.
ColumnOperators.match()
attempts to resolve to a MATCH-like function or operator provided by the backend. Examples include:PostgreSQL - renders
x @@ to_tsquery(y)
MySQL - renders
MATCH (x) AGAINST (y IN BOOLEAN MODE)
Oracle - renders
CONTAINS(x, y)
other backends may provide special implementations.
Backends without any special implementation will emit the operator as “MATCH”. This is compatible with SQLite, for example.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
notilike(other, escape=None)¶ inherited from the
ColumnOperators.notilike()
method ofColumnOperators
implement the
NOT ILIKE
operator.This is equivalent to using negation with
ColumnOperators.ilike()
, i.e.~x.ilike(y)
.See also
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
notin_(other)¶ inherited from the
ColumnOperators.notin_()
method ofColumnOperators
implement the
NOT IN
operator.This is equivalent to using negation with
ColumnOperators.in_()
, i.e.~x.in_(y)
.In the case that
other
is an empty sequence, the compiler produces an “empty not in” expression. This defaults to the expression “1 = 1” to produce true in all cases. Thecreate_engine.empty_in_strategy
may be used to alter this behavior.Changed in version 1.2: The
ColumnOperators.in_()
andColumnOperators.notin_()
operators now produce a “static” expression for an empty IN sequence by default.See also
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
notlike(other, escape=None)¶ inherited from the
ColumnOperators.notlike()
method ofColumnOperators
implement the
NOT LIKE
operator.This is equivalent to using negation with
ColumnOperators.like()
, i.e.~x.like(y)
.See also
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
nullsfirst()¶ inherited from the
ColumnOperators.nullsfirst()
method ofColumnOperators
Produce a
nullsfirst()
clause against the parent object.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
nullslast()¶ inherited from the
ColumnOperators.nullslast()
method ofColumnOperators
Produce a
nullslast()
clause against the parent object.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
of_type(cls)¶ Redefine this object in terms of a polymorphic subclass.
See
PropComparator.of_type()
for an example.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
op(opstring, precedence=0, is_comparison=False, return_type=None)¶ inherited from the
Operators.op()
method ofOperators
Produce a generic operator function.
e.g.:
somecolumn.op("*")(5)
produces:
somecolumn * 5
This function can also be used to make bitwise operators explicit. For example:
somecolumn.op('&')(0xff)
is a bitwise AND of the value in
somecolumn
.- Parameters:
operator – a string which will be output as the infix operator between this element and the expression passed to the generated function.
precedence – precedence to apply to the operator, when parenthesizing expressions. A lower number will cause the expression to be parenthesized when applied against another operator with higher precedence. The default value of
0
is lower than all operators except for the comma (,
) andAS
operators. A value of 100 will be higher or equal to all operators, and -100 will be lower than or equal to all operators.is_comparison –
if True, the operator will be considered as a “comparison” operator, that is which evaluates to a boolean true/false value, like
==
,>
, etc. This flag should be set so that ORM relationships can establish that the operator is a comparison operator when used in a custom join condition.New in version 0.9.2: - added the
Operators.op.is_comparison
flag.return_type –
a
TypeEngine
class or object that will force the return type of an expression produced by this operator to be of that type. By default, operators that specifyOperators.op.is_comparison
will resolve toBoolean
, and those that do not will be of the same type as the left-hand operand.New in version 1.2.0b3: - added the
Operators.op.return_type
argument.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
operate(op, *other, **kwargs)¶ inherited from the
Operators.operate()
method ofOperators
Operate on an argument.
This is the lowest level of operation, raises
NotImplementedError
by default.Overriding this on a subclass can allow common behavior to be applied to all operations. For example, overriding
ColumnOperators
to applyfunc.lower()
to the left and right side:class MyComparator(ColumnOperators): def operate(self, op, other): return op(func.lower(self), func.lower(other))
- Parameters:
op – Operator callable.
*other – the ‘other’ side of the operation. Will be a single scalar for most operations.
**kwargs – modifiers. These may be passed by special operators such as
ColumnOperators.contains()
.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
reverse_operate(op, other, **kwargs)¶ inherited from the
Operators.reverse_operate()
method ofOperators
Reverse operate on an argument.
Usage is the same as
operate()
.
-
method
sqlalchemy.orm.RelationshipProperty.Comparator.
startswith(other, **kwargs)¶ inherited from the
ColumnOperators.startswith()
method ofColumnOperators
Implement the
startswith
operator.Produces a LIKE expression that tests against a match for the start of a string value:
column LIKE <other> || '%'
E.g.:
stmt = select([sometable]).\ where(sometable.c.column.startswith("foobar"))
Since the operator uses
LIKE
, wildcard characters"%"
and"_"
that are present inside the <other> expression will behave like wildcards as well. For literal string values, theColumnOperators.startswith.autoescape
flag may be set toTrue
to apply escaping to occurrences of these characters within the string value so that they match as themselves and not as wildcard characters. Alternatively, theColumnOperators.startswith.escape
parameter will establish a given character as an escape character which can be of use when the target expression is not a literal string.- Parameters:
other – expression to be compared. This is usually a plain string value, but can also be an arbitrary SQL expression. LIKE wildcard characters
%
and_
are not escaped by default unless theColumnOperators.startswith.autoescape
flag is set to True.autoescape –
boolean; when True, establishes an escape character within the LIKE expression, then applies it to all occurrences of
"%"
,"_"
and the escape character itself within the comparison value, which is assumed to be a literal string and not a SQL expression.An expression such as:
somecolumn.startswith("foo%bar", autoescape=True)
Will render as:
somecolumn LIKE :param || '%' ESCAPE '/'
With the value of
:param
as"foo/%bar"
.New in version 1.2.
Changed in version 1.2.0: The
ColumnOperators.startswith.autoescape
parameter is now a simple boolean rather than a character; the escape character itself is also escaped, and defaults to a forwards slash, which itself can be customized using theColumnOperators.startswith.escape
parameter.escape –
a character which when given will render with the
ESCAPE
keyword to establish that character as the escape character. This character can then be placed preceding occurrences of%
and_
to allow them to act as themselves and not wildcard characters.An expression such as:
somecolumn.startswith("foo/%bar", escape="^")
Will render as:
somecolumn LIKE :param || '%' ESCAPE '^'
The parameter may also be combined with
ColumnOperators.startswith.autoescape
:somecolumn.startswith("foo%bar^bat", escape="^", autoescape=True)
Where above, the given literal parameter will be converted to
"foo^%bar^^bat"
before being passed to the database.
-
attribute
sqlalchemy.orm.RelationshipProperty.Comparator.
timetuple = None¶ inherited from the
ColumnOperators.timetuple
attribute ofColumnOperators
Hack, allows datetime objects to be compared on the LHS.
-
method
-
method
sqlalchemy.orm.RelationshipProperty.
__init__(argument, secondary=None, primaryjoin=None, secondaryjoin=None, foreign_keys=None, uselist=None, order_by=False, backref=None, back_populates=None, post_update=False, cascade=False, extension=None, viewonly=False, lazy='select', collection_class=None, passive_deletes=False, passive_updates=True, remote_side=None, enable_typechecks=True, join_depth=None, comparator_factory=None, single_parent=False, innerjoin=False, distinct_target_key=None, doc=None, active_history=False, cascade_backrefs=True, load_on_pending=False, bake_queries=True, _local_remote_pairs=None, query_class=None, info=None, omit_join=None, sync_backref=None)¶ Construct a new
RelationshipProperty
object.This constructor is mirrored as a public API function; see
sqlalchemy.orm.relationship()
for a full usage and argument description.
-
attribute
sqlalchemy.orm.RelationshipProperty.
cascade¶ The set of ‘cascade’ attribute names.
This collection is checked before the ‘cascade_iterator’ method is called.
The collection typically only applies to a RelationshipProperty.
-
method
sqlalchemy.orm.RelationshipProperty.
cascade_iterator(type_, state, dict_, visited_states, halt_on=None)¶ Iterate through instances related to the given instance for a particular ‘cascade’, starting with this MapperProperty.
Return an iterator3-tuples (instance, mapper, state).
Note that the ‘cascade’ collection on this MapperProperty is checked first for the given type before cascade_iterator is called.
This method typically only applies to RelationshipProperty.
-
attribute
sqlalchemy.orm.RelationshipProperty.
class_attribute¶ inherited from the
MapperProperty.class_attribute
attribute ofMapperProperty
Return the class-bound descriptor corresponding to this
MapperProperty
.This is basically a
getattr()
call:return getattr(self.parent.class_, self.key)
I.e. if this
MapperProperty
were namedaddresses
, and the class to which it is mapped isUser
, this sequence is possible:>>> from sqlalchemy import inspect >>> mapper = inspect(User) >>> addresses_property = mapper.attrs.addresses >>> addresses_property.class_attribute is User.addresses True >>> User.addresses.property is addresses_property True
-
method
sqlalchemy.orm.RelationshipProperty.
create_row_processor(context, path, mapper, result, adapter, populators)¶ inherited from the
StrategizedProperty.create_row_processor()
method ofStrategizedProperty
Produce row processing functions and append to the given set of populators lists.
-
method
sqlalchemy.orm.RelationshipProperty.
do_init()¶ Perform subclass-specific initialization post-mapper-creation steps.
This is a template method called by the
MapperProperty
object’s init() method.
-
attribute
sqlalchemy.orm.RelationshipProperty.
entity¶ Return the target mapped entity, which is an inspect() of the class or aliased class tha is referred towards.
-
attribute
sqlalchemy.orm.RelationshipProperty.
extension_type = symbol('NOT_EXTENSION')¶ inherited from the
InspectionAttr.extension_type
attribute ofInspectionAttr
The extension type, if any. Defaults to
NOT_EXTENSION
-
method
sqlalchemy.orm.RelationshipProperty.
init()¶ inherited from the
MapperProperty.init()
method ofMapperProperty
Called after all mappers are created to assemble relationships between mappers and perform other post-mapper-creation initialization steps.
-
method
sqlalchemy.orm.RelationshipProperty.
instrument_class(mapper)¶ Hook called by the Mapper to the property to initiate instrumentation of the class attribute managed by this MapperProperty.
The MapperProperty here will typically call out to the attributes module to set up an InstrumentedAttribute.
This step is the first of two steps to set up an InstrumentedAttribute, and is called early in the mapper setup process.
The second step is typically the init_class_attribute step, called from StrategizedProperty via the post_instrument_class() hook. This step assigns additional state to the InstrumentedAttribute (specifically the “impl”) which has been determined after the MapperProperty has determined what kind of persistence management it needs to do (e.g. scalar, object, collection, etc).
-
attribute
sqlalchemy.orm.RelationshipProperty.
is_aliased_class = False¶ inherited from the
InspectionAttr.is_aliased_class
attribute ofInspectionAttr
True if this object is an instance of
AliasedClass
.
-
attribute
sqlalchemy.orm.RelationshipProperty.
is_attribute = False¶ inherited from the
InspectionAttr.is_attribute
attribute ofInspectionAttr
True if this object is a Python descriptor.
This can refer to one of many types. Usually a
QueryableAttribute
which handles attributes events on behalf of aMapperProperty
. But can also be an extension type such asAssociationProxy
orhybrid_property
. TheInspectionAttr.extension_type
will refer to a constant identifying the specific subtype.See also
-
attribute
sqlalchemy.orm.RelationshipProperty.
is_clause_element = False¶ inherited from the
InspectionAttr.is_clause_element
attribute ofInspectionAttr
True if this object is an instance of
ClauseElement
.
-
attribute
sqlalchemy.orm.RelationshipProperty.
is_instance = False¶ inherited from the
InspectionAttr.is_instance
attribute ofInspectionAttr
True if this object is an instance of
InstanceState
.
-
attribute
sqlalchemy.orm.RelationshipProperty.
is_mapper = False¶ inherited from the
InspectionAttr.is_mapper
attribute ofInspectionAttr
True if this object is an instance of
Mapper
.
-
attribute
sqlalchemy.orm.RelationshipProperty.
is_property = True¶ inherited from the
MapperProperty.is_property
attribute ofMapperProperty
Part of the InspectionAttr interface; states this object is a mapper property.
-
attribute
sqlalchemy.orm.RelationshipProperty.
is_selectable = False¶ inherited from the
InspectionAttr.is_selectable
attribute ofInspectionAttr
Return True if this object is an instance of
Selectable
.
-
attribute
sqlalchemy.orm.RelationshipProperty.
mapper¶ Return the targeted
Mapper
for thisRelationshipProperty
.This is a lazy-initializing static attribute.
-
method
sqlalchemy.orm.RelationshipProperty.
merge(session, source_state, source_dict, dest_state, dest_dict, load, _recursive, _resolve_conflict_map)¶ Merge the attribute represented by this
MapperProperty
from source to destination object.
-
method
sqlalchemy.orm.RelationshipProperty.
post_instrument_class(mapper)¶ inherited from the
StrategizedProperty.post_instrument_class()
method ofStrategizedProperty
Perform instrumentation adjustments that need to occur after init() has completed.
The given Mapper is the Mapper invoking the operation, which may not be the same Mapper as self.parent in an inheritance scenario; however, Mapper will always at least be a sub-mapper of self.parent.
This method is typically used by StrategizedProperty, which delegates it to LoaderStrategy.init_class_attribute() to perform final setup on the class-bound InstrumentedAttribute.
-
method
sqlalchemy.orm.RelationshipProperty.
set_parent(parent, init)¶ inherited from the
MapperProperty.set_parent()
method ofMapperProperty
Set the parent mapper that references this MapperProperty.
This method is overridden by some subclasses to perform extra setup when the mapper is first known.
-
method
sqlalchemy.orm.RelationshipProperty.
setup(context, query_entity, path, adapter, **kwargs)¶ inherited from the
StrategizedProperty.setup()
method ofStrategizedProperty
Called by Query for the purposes of constructing a SQL statement.
Each MapperProperty associated with the target mapper processes the statement referenced by the query context, adding columns and/or criterion as appropriate.
- class sqlalchemy.orm.SynonymProperty(name, map_column=None, descriptor=None, comparator_factory=None, doc=None, info=None)¶
Members
__init__(), cascade, cascade_iterator(), class_attribute, create_row_processor(), do_init(), extension_type, init(), instrument_class(), is_aliased_class, is_attribute, is_clause_element, is_instance, is_mapper, is_property, is_selectable, merge(), post_instrument_class(), set_parent(), setup(), uses_objects
Class signature
class
sqlalchemy.orm.SynonymProperty
(sqlalchemy.orm.descriptor_props.DescriptorProperty
)-
method
sqlalchemy.orm.SynonymProperty.
__init__(name, map_column=None, descriptor=None, comparator_factory=None, doc=None, info=None)¶ Construct a new
SynonymProperty
object.This constructor is mirrored as a public API function; see
sqlalchemy.orm.synonym()
for a full usage and argument description.
-
attribute
sqlalchemy.orm.SynonymProperty.
cascade = frozenset({})¶ inherited from the
MapperProperty.cascade
attribute ofMapperProperty
The set of ‘cascade’ attribute names.
This collection is checked before the ‘cascade_iterator’ method is called.
The collection typically only applies to a RelationshipProperty.
-
method
sqlalchemy.orm.SynonymProperty.
cascade_iterator(type_, state, visited_instances=None, halt_on=None)¶ inherited from the
MapperProperty.cascade_iterator()
method ofMapperProperty
Iterate through instances related to the given instance for a particular ‘cascade’, starting with this MapperProperty.
Return an iterator3-tuples (instance, mapper, state).
Note that the ‘cascade’ collection on this MapperProperty is checked first for the given type before cascade_iterator is called.
This method typically only applies to RelationshipProperty.
-
attribute
sqlalchemy.orm.SynonymProperty.
class_attribute¶ inherited from the
MapperProperty.class_attribute
attribute ofMapperProperty
Return the class-bound descriptor corresponding to this
MapperProperty
.This is basically a
getattr()
call:return getattr(self.parent.class_, self.key)
I.e. if this
MapperProperty
were namedaddresses
, and the class to which it is mapped isUser
, this sequence is possible:>>> from sqlalchemy import inspect >>> mapper = inspect(User) >>> addresses_property = mapper.attrs.addresses >>> addresses_property.class_attribute is User.addresses True >>> User.addresses.property is addresses_property True
-
method
sqlalchemy.orm.SynonymProperty.
create_row_processor(context, path, mapper, result, adapter, populators)¶ inherited from the
MapperProperty.create_row_processor()
method ofMapperProperty
Produce row processing functions and append to the given set of populators lists.
-
method
sqlalchemy.orm.SynonymProperty.
do_init()¶ inherited from the
MapperProperty.do_init()
method ofMapperProperty
Perform subclass-specific initialization post-mapper-creation steps.
This is a template method called by the
MapperProperty
object’s init() method.
-
attribute
sqlalchemy.orm.SynonymProperty.
extension_type = symbol('NOT_EXTENSION')¶ inherited from the
InspectionAttr.extension_type
attribute ofInspectionAttr
The extension type, if any. Defaults to
NOT_EXTENSION
-
method
sqlalchemy.orm.SynonymProperty.
init()¶ inherited from the
MapperProperty.init()
method ofMapperProperty
Called after all mappers are created to assemble relationships between mappers and perform other post-mapper-creation initialization steps.
-
method
sqlalchemy.orm.SynonymProperty.
instrument_class(mapper)¶ inherited from the
DescriptorProperty.instrument_class()
method ofDescriptorProperty
Hook called by the Mapper to the property to initiate instrumentation of the class attribute managed by this MapperProperty.
The MapperProperty here will typically call out to the attributes module to set up an InstrumentedAttribute.
This step is the first of two steps to set up an InstrumentedAttribute, and is called early in the mapper setup process.
The second step is typically the init_class_attribute step, called from StrategizedProperty via the post_instrument_class() hook. This step assigns additional state to the InstrumentedAttribute (specifically the “impl”) which has been determined after the MapperProperty has determined what kind of persistence management it needs to do (e.g. scalar, object, collection, etc).
-
attribute
sqlalchemy.orm.SynonymProperty.
is_aliased_class = False¶ inherited from the
InspectionAttr.is_aliased_class
attribute ofInspectionAttr
True if this object is an instance of
AliasedClass
.
-
attribute
sqlalchemy.orm.SynonymProperty.
is_attribute = False¶ inherited from the
InspectionAttr.is_attribute
attribute ofInspectionAttr
True if this object is a Python descriptor.
This can refer to one of many types. Usually a
QueryableAttribute
which handles attributes events on behalf of aMapperProperty
. But can also be an extension type such asAssociationProxy
orhybrid_property
. TheInspectionAttr.extension_type
will refer to a constant identifying the specific subtype.See also
-
attribute
sqlalchemy.orm.SynonymProperty.
is_clause_element = False¶ inherited from the
InspectionAttr.is_clause_element
attribute ofInspectionAttr
True if this object is an instance of
ClauseElement
.
-
attribute
sqlalchemy.orm.SynonymProperty.
is_instance = False¶ inherited from the
InspectionAttr.is_instance
attribute ofInspectionAttr
True if this object is an instance of
InstanceState
.
-
attribute
sqlalchemy.orm.SynonymProperty.
is_mapper = False¶ inherited from the
InspectionAttr.is_mapper
attribute ofInspectionAttr
True if this object is an instance of
Mapper
.
-
attribute
sqlalchemy.orm.SynonymProperty.
is_property = True¶ inherited from the
MapperProperty.is_property
attribute ofMapperProperty
Part of the InspectionAttr interface; states this object is a mapper property.
-
attribute
sqlalchemy.orm.SynonymProperty.
is_selectable = False¶ inherited from the
InspectionAttr.is_selectable
attribute ofInspectionAttr
Return True if this object is an instance of
Selectable
.
-
method
sqlalchemy.orm.SynonymProperty.
merge(session, source_state, source_dict, dest_state, dest_dict, load, _recursive, _resolve_conflict_map)¶ inherited from the
MapperProperty.merge()
method ofMapperProperty
Merge the attribute represented by this
MapperProperty
from source to destination object.
-
method
sqlalchemy.orm.SynonymProperty.
post_instrument_class(mapper)¶ inherited from the
MapperProperty.post_instrument_class()
method ofMapperProperty
Perform instrumentation adjustments that need to occur after init() has completed.
The given Mapper is the Mapper invoking the operation, which may not be the same Mapper as self.parent in an inheritance scenario; however, Mapper will always at least be a sub-mapper of self.parent.
This method is typically used by StrategizedProperty, which delegates it to LoaderStrategy.init_class_attribute() to perform final setup on the class-bound InstrumentedAttribute.
-
method
sqlalchemy.orm.SynonymProperty.
set_parent(parent, init)¶ Set the parent mapper that references this MapperProperty.
This method is overridden by some subclasses to perform extra setup when the mapper is first known.
-
method
sqlalchemy.orm.SynonymProperty.
setup(context, query_entity, path, adapter, **kwargs)¶ inherited from the
MapperProperty.setup()
method ofMapperProperty
Called by Query for the purposes of constructing a SQL statement.
Each MapperProperty associated with the target mapper processes the statement referenced by the query context, adding columns and/or criterion as appropriate.
-
attribute
sqlalchemy.orm.SynonymProperty.
uses_objects¶
-
method
- class sqlalchemy.orm.query.QueryContext(query)¶
- class sqlalchemy.orm.attributes.QueryableAttribute(class_, key, impl=None, comparator=None, parententity=None, of_type=None)¶
Base class for descriptor objects that intercept attribute events on behalf of a
MapperProperty
object. The actualMapperProperty
is accessible via theQueryableAttribute.property
attribute.Members
__eq__(), __le__(), __lt__(), __ne__(), adapt_to_entity(), adapter, all_(), any(), any_(), asc(), between(), bool_op(), collate(), concat(), contains(), desc(), distinct(), endswith(), expression, extension_type, has(), ilike(), in_(), info, is_(), is_aliased_class, is_attribute, is_clause_element, is_distinct_from(), is_instance, is_mapper, is_property, is_selectable, isnot(), isnot_distinct_from(), like(), match(), notilike(), notin_(), notlike(), nullsfirst(), nullslast(), of_type(), op(), operate(), parent, property, reverse_operate(), startswith(), timetuple
Class signature
class
sqlalchemy.orm.attributes.QueryableAttribute
(sqlalchemy.orm.base._MappedAttribute
,sqlalchemy.orm.base.InspectionAttr
,sqlalchemy.orm.PropComparator
)-
method
sqlalchemy.orm.attributes.QueryableAttribute.
__eq__(other)¶ inherited from the
sqlalchemy.sql.operators.ColumnOperators.__eq__
method ofColumnOperators
Implement the
==
operator.In a column context, produces the clause
a = b
. If the target isNone
, producesa IS NULL
.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
__le__(other)¶ inherited from the
sqlalchemy.sql.operators.ColumnOperators.__le__
method ofColumnOperators
Implement the
<=
operator.In a column context, produces the clause
a <= b
.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
__lt__(other)¶ inherited from the
sqlalchemy.sql.operators.ColumnOperators.__lt__
method ofColumnOperators
Implement the
<
operator.In a column context, produces the clause
a < b
.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
__ne__(other)¶ inherited from the
sqlalchemy.sql.operators.ColumnOperators.__ne__
method ofColumnOperators
Implement the
!=
operator.In a column context, produces the clause
a != b
. If the target isNone
, producesa IS NOT NULL
.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
adapt_to_entity(adapt_to_entity)¶ Return a copy of this PropComparator which will use the given
AliasedInsp
to produce corresponding expressions.
-
attribute
sqlalchemy.orm.attributes.QueryableAttribute.
adapter¶ inherited from the
PropComparator.adapter
attribute ofPropComparator
Produce a callable that adapts column expressions to suit an aliased version of this comparator.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
all_()¶ inherited from the
ColumnOperators.all_()
method ofColumnOperators
Produce a
all_()
clause against the parent object.This operator is only appropriate against a scalar subquery object, or for some backends an column expression that is against the ARRAY type, e.g.:
# postgresql '5 = ALL (somearray)' expr = 5 == mytable.c.somearray.all_() # mysql '5 = ALL (SELECT value FROM table)' expr = 5 == select([table.c.value]).as_scalar().all_()
New in version 1.1.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
any(criterion=None, **kwargs)¶ inherited from the
PropComparator.any()
method ofPropComparator
Return true if this collection contains any member that meets the given criterion.
The usual implementation of
any()
isComparator.any()
.- Parameters:
criterion – an optional ClauseElement formulated against the member class’ table or attributes.
**kwargs – key/value pairs corresponding to member class attribute names which will be compared via equality to the corresponding values.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
any_()¶ inherited from the
ColumnOperators.any_()
method ofColumnOperators
Produce a
any_()
clause against the parent object.This operator is only appropriate against a scalar subquery object, or for some backends an column expression that is against the ARRAY type, e.g.:
# postgresql '5 = ANY (somearray)' expr = 5 == mytable.c.somearray.any_() # mysql '5 = ANY (SELECT value FROM table)' expr = 5 == select([table.c.value]).as_scalar().any_()
New in version 1.1.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
asc()¶ inherited from the
ColumnOperators.asc()
method ofColumnOperators
Produce a
asc()
clause against the parent object.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
between(cleft, cright, symmetric=False)¶ inherited from the
ColumnOperators.between()
method ofColumnOperators
Produce a
between()
clause against the parent object, given the lower and upper range.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
bool_op(opstring, precedence=0)¶ inherited from the
Operators.bool_op()
method ofOperators
Return a custom boolean operator.
This method is shorthand for calling
Operators.op()
and passing theOperators.op.is_comparison
flag with True.New in version 1.2.0b3.
See also
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
collate(collation)¶ inherited from the
ColumnOperators.collate()
method ofColumnOperators
Produce a
collate()
clause against the parent object, given the collation string.See also
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
concat(other)¶ inherited from the
ColumnOperators.concat()
method ofColumnOperators
Implement the ‘concat’ operator.
In a column context, produces the clause
a || b
, or uses theconcat()
operator on MySQL.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
contains(other, **kwargs)¶ inherited from the
ColumnOperators.contains()
method ofColumnOperators
Implement the ‘contains’ operator.
Produces a LIKE expression that tests against a match for the middle of a string value:
column LIKE '%' || <other> || '%'
E.g.:
stmt = select([sometable]).\ where(sometable.c.column.contains("foobar"))
Since the operator uses
LIKE
, wildcard characters"%"
and"_"
that are present inside the <other> expression will behave like wildcards as well. For literal string values, theColumnOperators.contains.autoescape
flag may be set toTrue
to apply escaping to occurrences of these characters within the string value so that they match as themselves and not as wildcard characters. Alternatively, theColumnOperators.contains.escape
parameter will establish a given character as an escape character which can be of use when the target expression is not a literal string.- Parameters:
other – expression to be compared. This is usually a plain string value, but can also be an arbitrary SQL expression. LIKE wildcard characters
%
and_
are not escaped by default unless theColumnOperators.contains.autoescape
flag is set to True.autoescape –
boolean; when True, establishes an escape character within the LIKE expression, then applies it to all occurrences of
"%"
,"_"
and the escape character itself within the comparison value, which is assumed to be a literal string and not a SQL expression.An expression such as:
somecolumn.contains("foo%bar", autoescape=True)
Will render as:
somecolumn LIKE '%' || :param || '%' ESCAPE '/'
With the value of
:param
as"foo/%bar"
.New in version 1.2.
Changed in version 1.2.0: The
ColumnOperators.contains.autoescape
parameter is now a simple boolean rather than a character; the escape character itself is also escaped, and defaults to a forwards slash, which itself can be customized using theColumnOperators.contains.escape
parameter.escape –
a character which when given will render with the
ESCAPE
keyword to establish that character as the escape character. This character can then be placed preceding occurrences of%
and_
to allow them to act as themselves and not wildcard characters.An expression such as:
somecolumn.contains("foo/%bar", escape="^")
Will render as:
somecolumn LIKE '%' || :param || '%' ESCAPE '^'
The parameter may also be combined with
ColumnOperators.contains.autoescape
:somecolumn.contains("foo%bar^bat", escape="^", autoescape=True)
Where above, the given literal parameter will be converted to
"foo^%bar^^bat"
before being passed to the database.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
desc()¶ inherited from the
ColumnOperators.desc()
method ofColumnOperators
Produce a
desc()
clause against the parent object.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
distinct()¶ inherited from the
ColumnOperators.distinct()
method ofColumnOperators
Produce a
distinct()
clause against the parent object.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
endswith(other, **kwargs)¶ inherited from the
ColumnOperators.endswith()
method ofColumnOperators
Implement the ‘endswith’ operator.
Produces a LIKE expression that tests against a match for the end of a string value:
column LIKE '%' || <other>
E.g.:
stmt = select([sometable]).\ where(sometable.c.column.endswith("foobar"))
Since the operator uses
LIKE
, wildcard characters"%"
and"_"
that are present inside the <other> expression will behave like wildcards as well. For literal string values, theColumnOperators.endswith.autoescape
flag may be set toTrue
to apply escaping to occurrences of these characters within the string value so that they match as themselves and not as wildcard characters. Alternatively, theColumnOperators.endswith.escape
parameter will establish a given character as an escape character which can be of use when the target expression is not a literal string.- Parameters:
other – expression to be compared. This is usually a plain string value, but can also be an arbitrary SQL expression. LIKE wildcard characters
%
and_
are not escaped by default unless theColumnOperators.endswith.autoescape
flag is set to True.autoescape –
boolean; when True, establishes an escape character within the LIKE expression, then applies it to all occurrences of
"%"
,"_"
and the escape character itself within the comparison value, which is assumed to be a literal string and not a SQL expression.An expression such as:
somecolumn.endswith("foo%bar", autoescape=True)
Will render as:
somecolumn LIKE '%' || :param ESCAPE '/'
With the value of
:param
as"foo/%bar"
.New in version 1.2.
Changed in version 1.2.0: The
ColumnOperators.endswith.autoescape
parameter is now a simple boolean rather than a character; the escape character itself is also escaped, and defaults to a forwards slash, which itself can be customized using theColumnOperators.endswith.escape
parameter.escape –
a character which when given will render with the
ESCAPE
keyword to establish that character as the escape character. This character can then be placed preceding occurrences of%
and_
to allow them to act as themselves and not wildcard characters.An expression such as:
somecolumn.endswith("foo/%bar", escape="^")
Will render as:
somecolumn LIKE '%' || :param ESCAPE '^'
The parameter may also be combined with
ColumnOperators.endswith.autoescape
:somecolumn.endswith("foo%bar^bat", escape="^", autoescape=True)
Where above, the given literal parameter will be converted to
"foo^%bar^^bat"
before being passed to the database.
-
attribute
sqlalchemy.orm.attributes.QueryableAttribute.
expression¶ The SQL expression object represented by this
QueryableAttribute
.This will typically be an instance of a
ColumnElement
subclass representing a column expression.
-
attribute
sqlalchemy.orm.attributes.QueryableAttribute.
extension_type = symbol('NOT_EXTENSION')¶ inherited from the
InspectionAttr.extension_type
attribute ofInspectionAttr
The extension type, if any. Defaults to
NOT_EXTENSION
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
has(criterion=None, **kwargs)¶ inherited from the
PropComparator.has()
method ofPropComparator
Return true if this element references a member which meets the given criterion.
The usual implementation of
has()
isComparator.has()
.- Parameters:
criterion – an optional ClauseElement formulated against the member class’ table or attributes.
**kwargs – key/value pairs corresponding to member class attribute names which will be compared via equality to the corresponding values.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
ilike(other, escape=None)¶ inherited from the
ColumnOperators.ilike()
method ofColumnOperators
Implement the
ilike
operator, e.g. case insensitive LIKE.In a column context, produces an expression either of the form:
lower(a) LIKE lower(other)
Or on backends that support the ILIKE operator:
a ILIKE other
E.g.:
stmt = select([sometable]).\ where(sometable.c.column.ilike("%foobar%"))
- Parameters:
other – expression to be compared
escape –
optional escape character, renders the
ESCAPE
keyword, e.g.:somecolumn.ilike("foo/%bar", escape="/")
See also
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
in_(other)¶ inherited from the
ColumnOperators.in_()
method ofColumnOperators
Implement the
in
operator.In a column context, produces the clause
column IN <other>
.The given parameter
other
may be:A list of literal values, e.g.:
stmt.where(column.in_([1, 2, 3]))
In this calling form, the list of items is converted to a set of bound parameters the same length as the list given:
WHERE COL IN (?, ?, ?)
A list of tuples may be provided if the comparison is against a
tuple_()
containing multiple expressions:from sqlalchemy import tuple_ stmt.where(tuple_(col1, col2).in_([(1, 10), (2, 20), (3, 30)]))
An empty list, e.g.:
stmt.where(column.in_([]))
In this calling form, the expression renders a “false” expression, e.g.:
WHERE 1 != 1
This “false” expression has historically had different behaviors in older SQLAlchemy versions, see
create_engine.empty_in_strategy
for behavioral options.Changed in version 1.2: simplified the behavior of “empty in” expressions
A bound parameter, e.g.
bindparam()
, may be used if it includes thebindparam.expanding
flag:stmt.where(column.in_(bindparam('value', expanding=True)))
In this calling form, the expression renders a special non-SQL placeholder expression that looks like:
WHERE COL IN ([EXPANDING_value])
This placeholder expression is intercepted at statement execution time to be converted into the variable number of bound parameter form illustrated earlier. If the statement were executed as:
connection.execute(stmt, {"value": [1, 2, 3]})
The database would be passed a bound parameter for each value:
WHERE COL IN (?, ?, ?)
New in version 1.2: added “expanding” bound parameters
If an empty list is passed, a special “empty list” expression, which is specific to the database in use, is rendered. On SQLite this would be:
WHERE COL IN (SELECT 1 FROM (SELECT 1) WHERE 1!=1)
New in version 1.3: “expanding” bound parameters now support empty lists
a
select()
construct, which is usually a correlated scalar select:stmt.where( column.in_( select([othertable.c.y]). where(table.c.x == othertable.c.x) ) )
In this calling form,
ColumnOperators.in_()
renders as given:WHERE COL IN (SELECT othertable.y FROM othertable WHERE othertable.x = table.x)
- Parameters:
other – a list of literals, a
select()
construct, or abindparam()
construct that includes thebindparam.expanding
flag set to True.
-
attribute
sqlalchemy.orm.attributes.QueryableAttribute.
info¶ Return the ‘info’ dictionary for the underlying SQL element.
The behavior here is as follows:
If the attribute is a column-mapped property, i.e.
ColumnProperty
, which is mapped directly to a schema-levelColumn
object, this attribute will return theSchemaItem.info
dictionary associated with the core-levelColumn
object.If the attribute is a
ColumnProperty
but is mapped to any other kind of SQL expression other than aColumn
, the attribute will refer to theMapperProperty.info
dictionary associated directly with theColumnProperty
, assuming the SQL expression itself does not have its own.info
attribute (which should be the case, unless a user-defined SQL construct has defined one).If the attribute refers to any other kind of
MapperProperty
, includingRelationshipProperty
, the attribute will refer to theMapperProperty.info
dictionary associated with thatMapperProperty
.To access the
MapperProperty.info
dictionary of theMapperProperty
unconditionally, including for aColumnProperty
that’s associated directly with aColumn
, the attribute can be referred to usingQueryableAttribute.property
attribute, asMyClass.someattribute.property.info
.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
is_(other)¶ inherited from the
ColumnOperators.is_()
method ofColumnOperators
Implement the
IS
operator.Normally,
IS
is generated automatically when comparing to a value ofNone
, which resolves toNULL
. However, explicit usage ofIS
may be desirable if comparing to boolean values on certain platforms.See also
-
attribute
sqlalchemy.orm.attributes.QueryableAttribute.
is_aliased_class = False¶ inherited from the
InspectionAttr.is_aliased_class
attribute ofInspectionAttr
True if this object is an instance of
AliasedClass
.
-
attribute
sqlalchemy.orm.attributes.QueryableAttribute.
is_attribute = True¶ True if this object is a Python descriptor.
This can refer to one of many types. Usually a
QueryableAttribute
which handles attributes events on behalf of aMapperProperty
. But can also be an extension type such asAssociationProxy
orhybrid_property
. TheInspectionAttr.extension_type
will refer to a constant identifying the specific subtype.See also
-
attribute
sqlalchemy.orm.attributes.QueryableAttribute.
is_clause_element = False¶ inherited from the
InspectionAttr.is_clause_element
attribute ofInspectionAttr
True if this object is an instance of
ClauseElement
.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
is_distinct_from(other)¶ inherited from the
ColumnOperators.is_distinct_from()
method ofColumnOperators
Implement the
IS DISTINCT FROM
operator.Renders “a IS DISTINCT FROM b” on most platforms; on some such as SQLite may render “a IS NOT b”.
New in version 1.1.
-
attribute
sqlalchemy.orm.attributes.QueryableAttribute.
is_instance = False¶ inherited from the
InspectionAttr.is_instance
attribute ofInspectionAttr
True if this object is an instance of
InstanceState
.
-
attribute
sqlalchemy.orm.attributes.QueryableAttribute.
is_mapper = False¶ inherited from the
InspectionAttr.is_mapper
attribute ofInspectionAttr
True if this object is an instance of
Mapper
.
-
attribute
sqlalchemy.orm.attributes.QueryableAttribute.
is_property = False¶ inherited from the
InspectionAttr.is_property
attribute ofInspectionAttr
True if this object is an instance of
MapperProperty
.
-
attribute
sqlalchemy.orm.attributes.QueryableAttribute.
is_selectable = False¶ inherited from the
InspectionAttr.is_selectable
attribute ofInspectionAttr
Return True if this object is an instance of
Selectable
.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
isnot(other)¶ inherited from the
ColumnOperators.isnot()
method ofColumnOperators
Implement the
IS NOT
operator.Normally,
IS NOT
is generated automatically when comparing to a value ofNone
, which resolves toNULL
. However, explicit usage ofIS NOT
may be desirable if comparing to boolean values on certain platforms.See also
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
isnot_distinct_from(other)¶ inherited from the
ColumnOperators.isnot_distinct_from()
method ofColumnOperators
Implement the
IS NOT DISTINCT FROM
operator.Renders “a IS NOT DISTINCT FROM b” on most platforms; on some such as SQLite may render “a IS b”.
New in version 1.1.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
like(other, escape=None)¶ inherited from the
ColumnOperators.like()
method ofColumnOperators
Implement the
like
operator.In a column context, produces the expression:
a LIKE other
E.g.:
stmt = select([sometable]).\ where(sometable.c.column.like("%foobar%"))
- Parameters:
other – expression to be compared
escape –
optional escape character, renders the
ESCAPE
keyword, e.g.:somecolumn.like("foo/%bar", escape="/")
See also
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
match(other, **kwargs)¶ inherited from the
ColumnOperators.match()
method ofColumnOperators
Implements a database-specific ‘match’ operator.
ColumnOperators.match()
attempts to resolve to a MATCH-like function or operator provided by the backend. Examples include:PostgreSQL - renders
x @@ to_tsquery(y)
MySQL - renders
MATCH (x) AGAINST (y IN BOOLEAN MODE)
Oracle - renders
CONTAINS(x, y)
other backends may provide special implementations.
Backends without any special implementation will emit the operator as “MATCH”. This is compatible with SQLite, for example.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
notilike(other, escape=None)¶ inherited from the
ColumnOperators.notilike()
method ofColumnOperators
implement the
NOT ILIKE
operator.This is equivalent to using negation with
ColumnOperators.ilike()
, i.e.~x.ilike(y)
.See also
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
notin_(other)¶ inherited from the
ColumnOperators.notin_()
method ofColumnOperators
implement the
NOT IN
operator.This is equivalent to using negation with
ColumnOperators.in_()
, i.e.~x.in_(y)
.In the case that
other
is an empty sequence, the compiler produces an “empty not in” expression. This defaults to the expression “1 = 1” to produce true in all cases. Thecreate_engine.empty_in_strategy
may be used to alter this behavior.Changed in version 1.2: The
ColumnOperators.in_()
andColumnOperators.notin_()
operators now produce a “static” expression for an empty IN sequence by default.See also
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
notlike(other, escape=None)¶ inherited from the
ColumnOperators.notlike()
method ofColumnOperators
implement the
NOT LIKE
operator.This is equivalent to using negation with
ColumnOperators.like()
, i.e.~x.like(y)
.See also
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
nullsfirst()¶ inherited from the
ColumnOperators.nullsfirst()
method ofColumnOperators
Produce a
nullsfirst()
clause against the parent object.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
nullslast()¶ inherited from the
ColumnOperators.nullslast()
method ofColumnOperators
Produce a
nullslast()
clause against the parent object.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
of_type(cls)¶ Redefine this object in terms of a polymorphic subclass,
with_polymorphic()
construct, oraliased()
construct.Returns a new PropComparator from which further criterion can be evaluated.
e.g.:
query.join(Company.employees.of_type(Engineer)).\ filter(Engineer.name=='foo')
- Parameters:
class_ – a class or mapper indicating that criterion will be against this specific subclass.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
op(opstring, precedence=0, is_comparison=False, return_type=None)¶ inherited from the
Operators.op()
method ofOperators
Produce a generic operator function.
e.g.:
somecolumn.op("*")(5)
produces:
somecolumn * 5
This function can also be used to make bitwise operators explicit. For example:
somecolumn.op('&')(0xff)
is a bitwise AND of the value in
somecolumn
.- Parameters:
operator – a string which will be output as the infix operator between this element and the expression passed to the generated function.
precedence – precedence to apply to the operator, when parenthesizing expressions. A lower number will cause the expression to be parenthesized when applied against another operator with higher precedence. The default value of
0
is lower than all operators except for the comma (,
) andAS
operators. A value of 100 will be higher or equal to all operators, and -100 will be lower than or equal to all operators.is_comparison –
if True, the operator will be considered as a “comparison” operator, that is which evaluates to a boolean true/false value, like
==
,>
, etc. This flag should be set so that ORM relationships can establish that the operator is a comparison operator when used in a custom join condition.New in version 0.9.2: - added the
Operators.op.is_comparison
flag.return_type –
a
TypeEngine
class or object that will force the return type of an expression produced by this operator to be of that type. By default, operators that specifyOperators.op.is_comparison
will resolve toBoolean
, and those that do not will be of the same type as the left-hand operand.New in version 1.2.0b3: - added the
Operators.op.return_type
argument.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
operate(op, *other, **kwargs)¶ Operate on an argument.
This is the lowest level of operation, raises
NotImplementedError
by default.Overriding this on a subclass can allow common behavior to be applied to all operations. For example, overriding
ColumnOperators
to applyfunc.lower()
to the left and right side:class MyComparator(ColumnOperators): def operate(self, op, other): return op(func.lower(self), func.lower(other))
- Parameters:
op – Operator callable.
*other – the ‘other’ side of the operation. Will be a single scalar for most operations.
**kwargs – modifiers. These may be passed by special operators such as
ColumnOperators.contains()
.
-
attribute
sqlalchemy.orm.attributes.QueryableAttribute.
parent¶ Return an inspection instance representing the parent.
This will be either an instance of
Mapper
orAliasedInsp
, depending upon the nature of the parent entity which this attribute is associated with.
-
attribute
sqlalchemy.orm.attributes.QueryableAttribute.
property¶ Return the
MapperProperty
associated with thisQueryableAttribute
.Return values here will commonly be instances of
ColumnProperty
orRelationshipProperty
.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
reverse_operate(op, other, **kwargs)¶ Reverse operate on an argument.
Usage is the same as
operate()
.
-
method
sqlalchemy.orm.attributes.QueryableAttribute.
startswith(other, **kwargs)¶ inherited from the
ColumnOperators.startswith()
method ofColumnOperators
Implement the
startswith
operator.Produces a LIKE expression that tests against a match for the start of a string value:
column LIKE <other> || '%'
E.g.:
stmt = select([sometable]).\ where(sometable.c.column.startswith("foobar"))
Since the operator uses
LIKE
, wildcard characters"%"
and"_"
that are present inside the <other> expression will behave like wildcards as well. For literal string values, theColumnOperators.startswith.autoescape
flag may be set toTrue
to apply escaping to occurrences of these characters within the string value so that they match as themselves and not as wildcard characters. Alternatively, theColumnOperators.startswith.escape
parameter will establish a given character as an escape character which can be of use when the target expression is not a literal string.- Parameters:
other – expression to be compared. This is usually a plain string value, but can also be an arbitrary SQL expression. LIKE wildcard characters
%
and_
are not escaped by default unless theColumnOperators.startswith.autoescape
flag is set to True.autoescape –
boolean; when True, establishes an escape character within the LIKE expression, then applies it to all occurrences of
"%"
,"_"
and the escape character itself within the comparison value, which is assumed to be a literal string and not a SQL expression.An expression such as:
somecolumn.startswith("foo%bar", autoescape=True)
Will render as:
somecolumn LIKE :param || '%' ESCAPE '/'
With the value of
:param
as"foo/%bar"
.New in version 1.2.
Changed in version 1.2.0: The
ColumnOperators.startswith.autoescape
parameter is now a simple boolean rather than a character; the escape character itself is also escaped, and defaults to a forwards slash, which itself can be customized using theColumnOperators.startswith.escape
parameter.escape –
a character which when given will render with the
ESCAPE
keyword to establish that character as the escape character. This character can then be placed preceding occurrences of%
and_
to allow them to act as themselves and not wildcard characters.An expression such as:
somecolumn.startswith("foo/%bar", escape="^")
Will render as:
somecolumn LIKE :param || '%' ESCAPE '^'
The parameter may also be combined with
ColumnOperators.startswith.autoescape
:somecolumn.startswith("foo%bar^bat", escape="^", autoescape=True)
Where above, the given literal parameter will be converted to
"foo^%bar^^bat"
before being passed to the database.
-
attribute
sqlalchemy.orm.attributes.QueryableAttribute.
timetuple = None¶ inherited from the
ColumnOperators.timetuple
attribute ofColumnOperators
Hack, allows datetime objects to be compared on the LHS.
-
method
- class sqlalchemy.orm.session.UOWTransaction(session)¶
-
method
sqlalchemy.orm.session.UOWTransaction.
filter_states_for_dep(dep, states)¶ Filter the given list of InstanceStates to those relevant to the given DependencyProcessor.
-
method
sqlalchemy.orm.session.UOWTransaction.
finalize_flush_changes()¶ Mark processed objects as clean / deleted after a successful flush().
This method is called within the flush() method after the execute() method has succeeded and the transaction has been committed.
-
method
sqlalchemy.orm.session.UOWTransaction.
get_attribute_history(state, key, passive=symbol('PASSIVE_NO_INITIALIZE'))¶ Facade to attributes.get_state_history(), including caching of results.
-
method
sqlalchemy.orm.session.UOWTransaction.
is_deleted(state)¶ Return
True
if the given state is marked as deleted within this uowtransaction.
-
method
sqlalchemy.orm.session.UOWTransaction.
remove_state_actions(state)¶ Remove pending actions for a state from the uowtransaction.
Members
filter_states_for_dep(), finalize_flush_changes(), get_attribute_history(), is_deleted(), remove_state_actions(), was_already_deleted()
-
method
sqlalchemy.orm.session.UOWTransaction.
was_already_deleted(state)¶ Return
True
if the given state is expired and was deleted previously.
-
method