SQLAlchemy 0.5 Documentation

Multiple Pages | One Page
Version: 0.5.0beta3 Last Updated: 08/04/08 18:36:49

module sqlalchemy.orm.mapper

Logic to map Python classes to and from selectables.

Defines the Mapper class, the central configurational unit which associates a class with a database table.

This is a semi-private module; the main configurational API of the ORM is available in module sqlalchemy.orm.

Module Functions

def class_mapper(class_, compile=True, raiseerror=True)

Given a class (or an object), return the primary Mapper associated with the key.

If no mapper can be located, raises InvalidRequestError.

class Mapper(object)

Define the correlation of class attributes to database table columns.

Instances of this class should be constructed via the mapper() function.

def __init__(self, class_, local_table, properties=None, primary_key=None, non_primary=False, inherits=None, inherit_condition=None, inherit_foreign_keys=None, extension=None, order_by=False, always_refresh=False, version_id_col=None, polymorphic_on=None, _polymorphic_map=None, polymorphic_identity=None, polymorphic_fetch=None, concrete=False, select_table=None, with_polymorphic=None, allow_null_pks=False, batch=True, column_prefix=None, include_properties=None, exclude_properties=None, eager_defaults=False)

Construct a new mapper.

Mappers are normally constructed via the mapper() function. See for details.

def add_properties(self, dict_of_properties)

Add the given dictionary of properties to this mapper, using add_property.

def add_property(self, key, prop)

Add an individual MapperProperty to this mapper.

If the mapper has not been compiled yet, just adds the property to the initial properties dictionary sent to the constructor. If this Mapper has already been compiled, then the given MapperProperty is compiled immediately.

def cascade_iterator(self, type_, state, halt_on=None)

Iterate each element and its mapper in an object graph, for all relations that meet the given cascade rule.

type_
The name of the cascade rule (i.e. save-update, delete, etc.)
state
The lead InstanceState. child items will be processed per the relations defined for this object's mapper.

the return value are object instances; this provides a strong reference so that they don't fall out of scope immediately.

def common_parent(self, other)

Return true if the given mapper shares a common inherited parent as this mapper.

def compile(self)

Compile this mapper and all other non-compiled mappers.

This method checks the local compiled status as well as for any new mappers that have been defined, and is safe to call repeatedly.

def dispose(self)
def get_property(self, key, resolve_synonyms=False, raiseerr=True)

return a MapperProperty associated with the given key.

def has_property(self, key)
def identity_key_from_instance(self, instance)

Return the identity key for the given instance, based on its primary key attributes.

This value is typically also found on the instance state under the attribute name key.

def identity_key_from_primary_key(self, primary_key)

Return an identity-map key for use in storing/retrieving an item from an identity map.

primary_key
A list of values indicating the identifier.
def identity_key_from_row(self, row, adapter=None)

Return an identity-map key for use in storing/retrieving an item from the identity map.

row
A sqlalchemy.engine.base.RowProxy instance or a dictionary corresponding result-set ColumnElement instances to their values within a row.
def isa(self, other)

Return True if the this mapper inherits from the given mapper.

iterate_properties = property()

return an iterator of all MapperProperty objects.

def iterate_to_root(self)
def polymorphic_iterator(self)

Iterate through the collection including this mapper and all descendant mappers.

This includes not just the immediately inheriting mappers but all their inheriting mappers as well.

To iterate through an entire hierarchy, use mapper.base_mapper.polymorphic_iterator().

def primary_key_from_instance(self, instance)

Return the list of primary key values for the given instance.

def primary_mapper(self)

Return the primary mapper corresponding to this mapper's class key (class).

properties = property()
back to section top
Up: API Documentation | Previous: module sqlalchemy.orm.interfaces | Next: module sqlalchemy.orm.properties