Session API¶
Session and sessionmaker()¶
| Object Name | Description |
|---|---|
Manages persistence operations for ORM-mapped objects. |
|
A configurable |
|
A |
- class sqlalchemy.orm.session.sessionmaker(bind=None, class_=<class 'sqlalchemy.orm.session.Session'>, autoflush=True, autocommit=False, expire_on_commit=True, info=None, **kw)¶
A configurable
Sessionfactory.The
sessionmakerfactory generates newSessionobjects when called, creating them given the configurational arguments established here.e.g.:
# global scope Session = sessionmaker(autoflush=False) # later, in a local scope, create and use a session: sess = Session()
Any keyword arguments sent to the constructor itself will override the “configured” keywords:
Session = sessionmaker() # bind an individual session to a connection sess = Session(bind=connection)
The class also includes a method
configure(), which can be used to specify additional keyword arguments to the factory, which will take effect for subsequentSessionobjects generated. This is usually used to associate one or moreEngineobjects with an existingsessionmakerfactory before it is first used:# application starts Session = sessionmaker() # ... later engine = create_engine('sqlite:///foo.db') Session.configure(bind=engine) sess = Session()
See also
Getting a Session - introductory text on creating sessions using
sessionmaker.Members
__call__(), __init__(), close_all(), configure(), identity_key(), object_session()
Class signature
class
sqlalchemy.orm.session.sessionmaker(sqlalchemy.orm.session._SessionClassMethods)-
method
sqlalchemy.orm.session.sessionmaker.__call__(**local_kw)¶ Produce a new
Sessionobject using the configuration established in thissessionmaker.In Python, the
__call__method is invoked on an object when it is “called” in the same way as a function:Session = sessionmaker() session = Session() # invokes sessionmaker.__call__()
-
method
sqlalchemy.orm.session.sessionmaker.__init__(bind=None, class_=<class 'sqlalchemy.orm.session.Session'>, autoflush=True, autocommit=False, expire_on_commit=True, info=None, **kw)¶ Construct a new
sessionmaker.All arguments here except for
class_correspond to arguments accepted bySessiondirectly. See theSession.__init__()docstring for more details on parameters.- Parameters:
bind – a
Engineor otherConnectablewith which newly createdSessionobjects will be associated.class_ – class to use in order to create new
Sessionobjects. Defaults toSession.autoflush – The autoflush setting to use with newly created
Sessionobjects.autocommit – The autocommit setting to use with newly created
Sessionobjects.expire_on_commit=True – the
Session.expire_on_commitsetting to use with newly createdSessionobjects.info –
optional dictionary of information that will be available via
Session.info. Note this dictionary is updated, not replaced, when theinfoparameter is specified to the specificSessionconstruction operation.New in version 0.9.0.
**kw – all other keyword arguments are passed to the constructor of newly created
Sessionobjects.
-
classmethod
sqlalchemy.orm.session.sessionmaker.close_all()¶ inherited from the
sqlalchemy.orm.session._SessionClassMethods.close_allmethod ofsqlalchemy.orm.session._SessionClassMethodsClose all sessions in memory.
Deprecated since version 1.3: The
Session.close_all()method is deprecated and will be removed in a future release. Please refer toclose_all_sessions().
-
method
sqlalchemy.orm.session.sessionmaker.configure(**new_kw)¶ (Re)configure the arguments for this sessionmaker.
e.g.:
Session = sessionmaker() Session.configure(bind=create_engine('sqlite://'))
-
classmethod
sqlalchemy.orm.session.sessionmaker.identity_key(orm_util, *args, **kwargs)¶ inherited from the
sqlalchemy.orm.session._SessionClassMethods.identity_keymethod ofsqlalchemy.orm.session._SessionClassMethodsReturn an identity key.
This is an alias of
identity_key().
-
classmethod
sqlalchemy.orm.session.sessionmaker.object_session(instance)¶ inherited from the
sqlalchemy.orm.session._SessionClassMethods.object_sessionmethod ofsqlalchemy.orm.session._SessionClassMethodsReturn the
Sessionto which an object belongs.This is an alias of
object_session().
-
method
- class sqlalchemy.orm.session.Session(bind=None, autoflush=True, expire_on_commit=True, _enable_transaction_accounting=True, autocommit=False, twophase=False, weak_identity_map=None, binds=None, extension=None, enable_baked_queries=True, info=None, query_cls=None)¶
Manages persistence operations for ORM-mapped objects.
The Session’s usage paradigm is described at Using the Session.
Members
__init__(), add(), add_all(), begin(), begin_nested(), bind_mapper(), bind_table(), bulk_insert_mappings(), bulk_save_objects(), bulk_update_mappings(), close(), close_all(), commit(), connection(), delete(), deleted, dirty, enable_relationship_loading(), execute(), expire(), expire_all(), expunge(), expunge_all(), flush(), get_bind(), identity_key(), identity_map, info, invalidate(), is_active, is_modified(), merge(), new, no_autoflush, object_session(), prepare(), prune(), query(), refresh(), rollback(), scalar(), transaction
Class signature
class
sqlalchemy.orm.session.Session(sqlalchemy.orm.session._SessionClassMethods)-
method
sqlalchemy.orm.session.Session.__init__(bind=None, autoflush=True, expire_on_commit=True, _enable_transaction_accounting=True, autocommit=False, twophase=False, weak_identity_map=None, binds=None, extension=None, enable_baked_queries=True, info=None, query_cls=None)¶ Construct a new Session.
See also the
sessionmakerfunction which is used to generate aSession-producing callable with a given set of arguments.- Parameters:
autocommit –
Warning
The autocommit flag is not for general use, and if it is used, queries should only be invoked within the span of a
Session.begin()/Session.commit()pair. Executing queries outside of a demarcated transaction is a legacy mode of usage, and can in some cases lead to concurrent connection checkouts.Defaults to
False. WhenTrue, theSessiondoes not keep a persistent transaction running, and will acquire connections from the engine on an as-needed basis, returning them immediately after their use. Flushes will begin and commit (or possibly rollback) their own transaction if no transaction is present. When using this mode, theSession.begin()method is used to explicitly start transactions.See also
autoflush – When
True, all query operations will issue aSession.flush()call to thisSessionbefore proceeding. This is a convenience feature so thatSession.flush()need not be called repeatedly in order for database queries to retrieve results. It’s typical thatautoflushis used in conjunction withautocommit=False. In this scenario, explicit calls toSession.flush()are rarely needed; you usually only need to callSession.commit()(which flushes) to finalize changes.bind – An optional
EngineorConnectionto which thisSessionshould be bound. When specified, all SQL operations performed by this session will execute via this connectable.binds –
A dictionary which may specify any number of
EngineorConnectionobjects as the source of connectivity for SQL operations on a per-entity basis. The keys of the dictionary consist of any series of mapped classes, arbitrary Python classes that are bases for mapped classes,Tableobjects andMapperobjects. The values of the dictionary are then instances ofEngineor less commonlyConnectionobjects. Operations which proceed relative to a particular mapped class will consult this dictionary for the closest matching entity in order to determine whichEngineshould be used for a particular SQL operation. The complete heuristics for resolution are described atSession.get_bind(). Usage looks like:Session = sessionmaker(binds={ SomeMappedClass: create_engine('postgresql://engine1'), SomeDeclarativeBase: create_engine('postgresql://engine2'), some_mapper: create_engine('postgresql://engine3'), some_table: create_engine('postgresql://engine4'), })
class_ – Specify an alternate class other than
sqlalchemy.orm.session.Sessionwhich should be used by the returned class. This is the only argument that is local to thesessionmakerfunction, and is not sent directly to the constructor forSession.enable_baked_queries –
defaults to
True. A flag consumed by thesqlalchemy.ext.bakedextension to determine if “baked queries” should be cached, as is the normal operation of this extension. When set toFalse, all caching is disabled, including baked queries defined by the calling application as well as those used internally. Setting this flag toFalsecan significantly reduce memory use, however will also degrade performance for those areas that make use of baked queries (such as relationship loaders). Additionally, baked query logic in the calling application or potentially within the ORM that may be malfunctioning due to cache key collisions or similar can be flagged by observing if this flag resolves the issue.New in version 1.2.
_enable_transaction_accounting –
A legacy-only flag which when
Falsedisables all 0.5-style object accounting on transaction boundaries.Deprecated since version 0.7: The
Session._enable_transaction_accountingparameter is deprecated and will be removed in a future release.expire_on_commit –
Defaults to
True. WhenTrue, all instances will be fully expired after eachcommit(), so that all attribute/object access subsequent to a completed transaction will load from the most recent database state.See also
extension –
An optional
SessionExtensioninstance, or a list of such instances, which will receive pre- and post- commit and flush events, as well as a post-rollback event.Deprecated since version 0.7:
SessionExtensionis deprecated in favor of theSessionEventslistener interface. TheSession.extensionparameter will be removed in a future release.info –
optional dictionary of arbitrary data to be associated with this
Session. Is available via theSession.infoattribute. Note the dictionary is copied at construction time so that modifications to the per-Sessiondictionary will be local to thatSession.New in version 0.9.0.
query_cls – Class which should be used to create new Query objects, as returned by the
Session.query()method. Defaults toQuery.twophase – When
True, all transactions will be started as a “two phase” transaction, i.e. using the “two phase” semantics of the database in use along with an XID. During acommit(), afterflush()has been issued for all attached databases, theTwoPhaseTransaction.prepare()method on each database’sTwoPhaseTransactionwill be called. This allows each database to roll back the entire transaction, before each transaction is committed.weak_identity_map –
Defaults to
True- when set toFalse, objects placed in theSessionwill be strongly referenced until explicitly removed or theSessionis closed.Deprecated since version 1.0: The
Session.weak_identity_mapparameter as well as the strong-referencing identity map are deprecated, and will be removed in a future release. For the use case where objects present in aSessionneed to be automatically strong referenced, see the recipe at Session Referencing Behavior for an event-based approach to maintaining strong identity references.
-
method
sqlalchemy.orm.session.Session.add(instance, _warn=True)¶ Place an object in the
Session.Its state will be persisted to the database on the next flush operation.
Repeated calls to
add()will be ignored. The opposite ofadd()isexpunge().
-
method
sqlalchemy.orm.session.Session.add_all(instances)¶ Add the given collection of instances to this
Session.
-
method
sqlalchemy.orm.session.Session.begin(subtransactions=False, nested=False)¶ Begin a transaction on this
Session.Warning
The
Session.begin()method is part of a larger pattern of use with theSessionknown as autocommit mode. This is essentially a legacy mode of use and is not necessary for new applications. TheSessionnormally handles the work of “begin” transparently, which in turn relies upon the Python DBAPI to transparently “begin” transactions; there is no need to explicitly begin transactions when using modernSessionprogramming patterns. In its default mode ofautocommit=False, theSessiondoes all of its work within the context of a transaction, so as soon as you callSession.commit(), the next transaction is implicitly started when the next database operation is invoked. See Autocommit Mode for further background.The method will raise an error if this
Sessionis already inside of a transaction, unlessSession.begin.subtransactionsorSession.begin.nestedare specified. A “subtransaction” is essentially a code embedding pattern that does not affect the transactional state of the database connection unless a rollback is emitted, in which case the whole transaction is rolled back. For documentation on subtransactions, please see Using Subtransactions with Autocommit.- Parameters:
subtransactions – if True, indicates that this
Session.begin()can create a “subtransaction”.nested – if True, begins a SAVEPOINT transaction and is equivalent to calling
Session.begin_nested(). For documentation on SAVEPOINT transactions, please see Using SAVEPOINT.
- Returns:
the
SessionTransactionobject. Note thatSessionTransactionacts as a Python context manager, allowingSession.begin()to be used in a “with” block. See Autocommit Mode for an example.
-
method
sqlalchemy.orm.session.Session.begin_nested()¶ Begin a “nested” transaction on this Session, e.g. SAVEPOINT.
The target database(s) and associated drivers must support SQL SAVEPOINT for this method to function correctly.
For documentation on SAVEPOINT transactions, please see Using SAVEPOINT.
- Returns:
the
SessionTransactionobject. Note thatSessionTransactionacts as a context manager, allowingSession.begin_nested()to be used in a “with” block. See Using SAVEPOINT for a usage example.
See also
Serializable isolation / Savepoints / Transactional DDL - special workarounds required with the SQLite driver in order for SAVEPOINT to work correctly.
-
method
sqlalchemy.orm.session.Session.bind_mapper(mapper, bind)¶ Associate a
Mapperor arbitrary Python class with a “bind”, e.g. anEngineorConnection.The given entity is added to a lookup used by the
Session.get_bind()method.- Parameters:
mapper – a
Mapperobject, or an instance of a mapped class, or any Python class that is the base of a set of mapped classes.bind – an
EngineorConnectionobject.
-
method
sqlalchemy.orm.session.Session.bind_table(table, bind)¶ Associate a
Tablewith a “bind”, e.g. anEngineorConnection.The given
Tableis added to a lookup used by theSession.get_bind()method.- Parameters:
table – a
Tableobject, which is typically the target of an ORM mapping, or is present within a selectable that is mapped.bind – an
EngineorConnectionobject.
-
method
sqlalchemy.orm.session.Session.bulk_insert_mappings(mapper, mappings, return_defaults=False, render_nulls=False)¶ Perform a bulk insert of the given list of mapping dictionaries.
The bulk insert feature allows plain Python dictionaries to be used as the source of simple INSERT operations which can be more easily grouped together into higher performing “executemany” operations. Using dictionaries, there is no “history” or session state management features in use, reducing latency when inserting large numbers of simple rows.
The values within the dictionaries as given are typically passed without modification into Core
sqlalchemy.sql.expression.Insert()constructs, after organizing the values within them across the tables to which the given mapper is mapped.New in version 1.0.0.
Warning
The bulk insert feature allows for a lower-latency INSERT of rows at the expense of most other unit-of-work features. Features such as object management, relationship handling, and SQL clause support are silently omitted in favor of raw INSERT of records.
Please read the list of caveats at ORM Compatibility / Caveats before using this method, and fully test and confirm the functionality of all code developed using these systems.
- Parameters:
mapper – a mapped class, or the actual
Mapperobject, representing the single kind of object represented within the mapping list.mappings – a sequence of dictionaries, each one containing the state of the mapped row to be inserted, in terms of the attribute names on the mapped class. If the mapping refers to multiple tables, such as a joined-inheritance mapping, each dictionary must contain all keys to be populated into all tables.
return_defaults – when True, rows that are missing values which generate defaults, namely integer primary key defaults and sequences, will be inserted one at a time, so that the primary key value is available. In particular this will allow joined-inheritance and other multi-table mappings to insert correctly without the need to provide primary key values ahead of time; however,
Session.bulk_insert_mappings.return_defaultsgreatly reduces the performance gains of the method overall. If the rows to be inserted only refer to a single table, then there is no reason this flag should be set as the returned default information is not used.render_nulls –
When True, a value of
Nonewill result in a NULL value being included in the INSERT statement, rather than the column being omitted from the INSERT. This allows all the rows being INSERTed to have the identical set of columns which allows the full set of rows to be batched to the DBAPI. Normally, each column-set that contains a different combination of NULL values than the previous row must omit a different series of columns from the rendered INSERT statement, which means it must be emitted as a separate statement. By passing this flag, the full set of rows are guaranteed to be batchable into one batch; the cost however is that server-side defaults which are invoked by an omitted column will be skipped, so care must be taken to ensure that these are not necessary.Warning
When this flag is set, server side default SQL values will not be invoked for those columns that are inserted as NULL; the NULL value will be sent explicitly. Care must be taken to ensure that no server-side default functions need to be invoked for the operation as a whole.
New in version 1.1.
-
method
sqlalchemy.orm.session.Session.bulk_save_objects(objects, return_defaults=False, update_changed_only=True, preserve_order=True)¶ Perform a bulk save of the given list of objects.
The bulk save feature allows mapped objects to be used as the source of simple INSERT and UPDATE operations which can be more easily grouped together into higher performing “executemany” operations; the extraction of data from the objects is also performed using a lower-latency process that ignores whether or not attributes have actually been modified in the case of UPDATEs, and also ignores SQL expressions.
The objects as given are not added to the session and no additional state is established on them, unless the
return_defaultsflag is also set, in which case primary key attributes and server-side default values will be populated.New in version 1.0.0.
Warning
The bulk save feature allows for a lower-latency INSERT/UPDATE of rows at the expense of most other unit-of-work features. Features such as object management, relationship handling, and SQL clause support are silently omitted in favor of raw INSERT/UPDATES of records.
Please read the list of caveats at ORM Compatibility / Caveats before using this method, and fully test and confirm the functionality of all code developed using these systems.
- Parameters:
objects –
a sequence of mapped object instances. The mapped objects are persisted as is, and are not associated with the
Sessionafterwards.For each object, whether the object is sent as an INSERT or an UPDATE is dependent on the same rules used by the
Sessionin traditional operation; if the object has theInstanceState.keyattribute set, then the object is assumed to be “detached” and will result in an UPDATE. Otherwise, an INSERT is used.In the case of an UPDATE, statements are grouped based on which attributes have changed, and are thus to be the subject of each SET clause. If
update_changed_onlyis False, then all attributes present within each object are applied to the UPDATE statement, which may help in allowing the statements to be grouped together into a larger executemany(), and will also reduce the overhead of checking history on attributes.return_defaults – when True, rows that are missing values which generate defaults, namely integer primary key defaults and sequences, will be inserted one at a time, so that the primary key value is available. In particular this will allow joined-inheritance and other multi-table mappings to insert correctly without the need to provide primary key values ahead of time; however,
Session.bulk_save_objects.return_defaultsgreatly reduces the performance gains of the method overall.update_changed_only – when True, UPDATE statements are rendered based on those attributes in each state that have logged changes. When False, all attributes present are rendered into the SET clause with the exception of primary key attributes.
preserve_order –
when True, the order of inserts and updates matches exactly the order in which the objects are given. When False, common types of objects are grouped into inserts and updates, to allow for more batching opportunities.
New in version 1.3.
-
method
sqlalchemy.orm.session.Session.bulk_update_mappings(mapper, mappings)¶ Perform a bulk update of the given list of mapping dictionaries.
The bulk update feature allows plain Python dictionaries to be used as the source of simple UPDATE operations which can be more easily grouped together into higher performing “executemany” operations. Using dictionaries, there is no “history” or session state management features in use, reducing latency when updating large numbers of simple rows.
New in version 1.0.0.
Warning
The bulk update feature allows for a lower-latency UPDATE of rows at the expense of most other unit-of-work features. Features such as object management, relationship handling, and SQL clause support are silently omitted in favor of raw UPDATES of records.
Please read the list of caveats at ORM Compatibility / Caveats before using this method, and fully test and confirm the functionality of all code developed using these systems.
- Parameters:
mapper – a mapped class, or the actual
Mapperobject, representing the single kind of object represented within the mapping list.mappings – a sequence of dictionaries, each one containing the state of the mapped row to be updated, in terms of the attribute names on the mapped class. If the mapping refers to multiple tables, such as a joined-inheritance mapping, each dictionary may contain keys corresponding to all tables. All those keys which are present and are not part of the primary key are applied to the SET clause of the UPDATE statement; the primary key values, which are required, are applied to the WHERE clause.
-
method
sqlalchemy.orm.session.Session.close()¶ Close this Session.
This clears all items and ends any transaction in progress.
If this session were created with
autocommit=False, a new transaction is immediately begun. Note that this new transaction does not use any connection resources until they are first needed.
-
classmethod
sqlalchemy.orm.session.Session.close_all()¶ inherited from the
sqlalchemy.orm.session._SessionClassMethods.close_allmethod ofsqlalchemy.orm.session._SessionClassMethodsClose all sessions in memory.
Deprecated since version 1.3: The
Session.close_all()method is deprecated and will be removed in a future release. Please refer toclose_all_sessions().
-
method
sqlalchemy.orm.session.Session.commit()¶ Flush pending changes and commit the current transaction.
If no transaction is in progress, this method raises an
InvalidRequestError.By default, the
Sessionalso expires all database loaded state on all ORM-managed attributes after transaction commit. This so that subsequent operations load the most recent data from the database. This behavior can be disabled using theexpire_on_commit=Falseoption tosessionmakeror theSessionconstructor.If a subtransaction is in effect (which occurs when begin() is called multiple times), the subtransaction will be closed, and the next call to
commit()will operate on the enclosing transaction.When using the
Sessionin its default mode ofautocommit=False, a new transaction will be begun immediately after the commit, but note that the newly begun transaction does not use any connection resources until the first SQL is actually emitted.See also
-
method
sqlalchemy.orm.session.Session.connection(mapper=None, clause=None, bind=None, close_with_result=False, execution_options=None, **kw)¶ Return a
Connectionobject corresponding to thisSessionobject’s transactional state.If this
Sessionis configured withautocommit=False, either theConnectioncorresponding to the current transaction is returned, or if no transaction is in progress, a new one is begun and theConnectionreturned (note that no transactional state is established with the DBAPI until the first SQL statement is emitted).Alternatively, if this
Sessionis configured withautocommit=True, an ad-hocConnectionis returned usingEngine.connect()on the underlyingEngine.Ambiguity in multi-bind or unbound
Sessionobjects can be resolved through any of the optional keyword arguments. This ultimately makes usage of theget_bind()method for resolution.- Parameters:
bind – Optional
Engineto be used as the bind. If this engine is already involved in an ongoing transaction, that connection will be used. This argument takes precedence overmapper,clause.mapper – Optional
mapper()mapped class, used to identify the appropriate bind. This argument takes precedence overclause.clause – A
ClauseElement(i.e.select(),text(), etc.) which will be used to locate a bind, if a bind cannot otherwise be identified.close_with_result – Passed to
Engine.connect(), indicating theConnectionshould be considered “single use”, automatically closing when the first result set is closed. This flag only has an effect if thisSessionis configured withautocommit=Trueand does not already have a transaction in progress.execution_options –
a dictionary of execution options that will be passed to
Connection.execution_options(), when the connection is first procured only. If the connection is already present within theSession, a warning is emitted and the arguments are ignored.New in version 0.9.9.
**kw – Additional keyword arguments are sent to
get_bind(), allowing additional arguments to be passed to custom implementations ofget_bind().
-
method
sqlalchemy.orm.session.Session.delete(instance)¶ Mark an instance as deleted.
The database delete operation occurs upon
flush().
-
attribute
sqlalchemy.orm.session.Session.deleted¶ The set of all instances marked as ‘deleted’ within this
Session
-
attribute
sqlalchemy.orm.session.Session.dirty¶ The set of all persistent instances considered dirty.
E.g.:
some_mapped_object in session.dirty
Instances are considered dirty when they were modified but not deleted.
Note that this ‘dirty’ calculation is ‘optimistic’; most attribute-setting or collection modification operations will mark an instance as ‘dirty’ and place it in this set, even if there is no net change to the attribute’s value. At flush time, the value of each attribute is compared to its previously saved value, and if there’s no net change, no SQL operation will occur (this is a more expensive operation so it’s only done at flush time).
To check if an instance has actionable net changes to its attributes, use the
Session.is_modified()method.
-
method
sqlalchemy.orm.session.Session.enable_relationship_loading(obj)¶ Associate an object with this
Sessionfor related object loading.Warning
enable_relationship_loading()exists to serve special use cases and is not recommended for general use.Accesses of attributes mapped with
relationship()will attempt to load a value from the database using thisSessionas the source of connectivity. The values will be loaded based on foreign key and primary key values present on this object - if not present, then those relationships will be unavailable.The object will be attached to this session, but will not participate in any persistence operations; its state for almost all purposes will remain either “transient” or “detached”, except for the case of relationship loading.
Also note that backrefs will often not work as expected. Altering a relationship-bound attribute on the target object may not fire off a backref event, if the effective value is what was already loaded from a foreign-key-holding value.
The
Session.enable_relationship_loading()method is similar to theload_on_pendingflag onrelationship(). Unlike that flag,Session.enable_relationship_loading()allows an object to remain transient while still being able to load related items.To make a transient object associated with a
SessionviaSession.enable_relationship_loading()pending, add it to theSessionusingSession.add()normally. If the object instead represents an existing identity in the database, it should be merged usingSession.merge().Session.enable_relationship_loading()does not improve behavior when the ORM is used normally - object references should be constructed at the object level, not at the foreign key level, so that they are present in an ordinary way before flush() proceeds. This method is not intended for general use.See also
relationship.load_on_pending- this flag allows per-relationship loading of many-to-ones on items that are pending.make_transient_to_detached()- allows for an object to be added to aSessionwithout SQL emitted, which then will unexpire attributes on access.
-
method
sqlalchemy.orm.session.Session.execute(clause, params=None, mapper=None, bind=None, **kw)¶ Execute a SQL expression construct or string statement within the current transaction.
Returns a
ResultProxyrepresenting results of the statement execution, in the same manner as that of anEngineorConnection.E.g.:
result = session.execute( user_table.select().where(user_table.c.id == 5) )
Session.execute()accepts any executable clause construct, such asselect(),insert(),update(),delete(), andtext(). Plain SQL strings can be passed as well, which in the case ofSession.execute()only will be interpreted the same as if it were passed via atext()construct. That is, the following usage:result = session.execute( "SELECT * FROM user WHERE id=:param", {"param":5} )
is equivalent to:
from sqlalchemy import text result = session.execute( text("SELECT * FROM user WHERE id=:param"), {"param":5} )
The second positional argument to
Session.execute()is an optional parameter set. Similar to that ofConnection.execute(), whether this is passed as a single dictionary, or a sequence of dictionaries, determines whether the DBAPI cursor’sexecute()orexecutemany()is used to execute the statement. An INSERT construct may be invoked for a single row:result = session.execute( users.insert(), {"id": 7, "name": "somename"})
or for multiple rows:
result = session.execute(users.insert(), [ {"id": 7, "name": "somename7"}, {"id": 8, "name": "somename8"}, {"id": 9, "name": "somename9"} ])
The statement is executed within the current transactional context of this
Session. TheConnectionwhich is used to execute the statement can also be acquired directly by calling theSession.connection()method. Both methods use a rule-based resolution scheme in order to determine theConnection, which in the average case is derived directly from the “bind” of theSessionitself, and in other cases can be based on themapper()andTableobjects passed to the method; see the documentation forSession.get_bind()for a full description of this scheme.The
Session.execute()method does not invoke autoflush.The
ResultProxyreturned by theSession.execute()method is returned with the “close_with_result” flag set to true; the significance of this flag is that if thisSessionis autocommitting and does not have a transaction-dedicatedConnectionavailable, a temporaryConnectionis established for the statement execution, which is closed (meaning, returned to the connection pool) when theResultProxyhas consumed all available data. This applies only when theSessionis configured with autocommit=True and no transaction has been started.- Parameters:
clause – An executable statement (i.e. an
Executableexpression such asselect()) or string SQL statement to be executed.params – Optional dictionary, or list of dictionaries, containing bound parameter values. If a single dictionary, single-row execution occurs; if a list of dictionaries, an “executemany” will be invoked. The keys in each dictionary must correspond to parameter names present in the statement.
mapper – Optional
mapper()or mapped class, used to identify the appropriate bind. This argument takes precedence overclausewhen locating a bind. SeeSession.get_bind()for more details.bind – Optional
Engineto be used as the bind. If this engine is already involved in an ongoing transaction, that connection will be used. This argument takes precedence overmapperandclausewhen locating a bind.**kw – Additional keyword arguments are sent to
Session.get_bind()to allow extensibility of “bind” schemes.
See also
SQL Expression Language Tutorial - Tutorial on using Core SQL constructs.
Working with Engines and Connections - Further information on direct statement execution.
Connection.execute()- core level statement execution method, which isSession.execute()ultimately uses in order to execute the statement.
-
method
sqlalchemy.orm.session.Session.expire(instance, attribute_names=None)¶ Expire the attributes on an instance.
Marks the attributes of an instance as out of date. When an expired attribute is next accessed, a query will be issued to the
Sessionobject’s current transactional context in order to load all expired attributes for the given instance. Note that a highly isolated transaction will return the same values as were previously read in that same transaction, regardless of changes in database state outside of that transaction.To expire all objects in the
Sessionsimultaneously, useSession.expire_all().The
Sessionobject’s default behavior is to expire all state whenever theSession.rollback()orSession.commit()methods are called, so that new state can be loaded for the new transaction. For this reason, callingSession.expire()only makes sense for the specific case that a non-ORM SQL statement was emitted in the current transaction.- Parameters:
instance – The instance to be refreshed.
attribute_names – optional list of string attribute names indicating a subset of attributes to be expired.
-
method
sqlalchemy.orm.session.Session.expire_all()¶ Expires all persistent instances within this Session.
When any attributes on a persistent instance is next accessed, a query will be issued using the
Sessionobject’s current transactional context in order to load all expired attributes for the given instance. Note that a highly isolated transaction will return the same values as were previously read in that same transaction, regardless of changes in database state outside of that transaction.To expire individual objects and individual attributes on those objects, use
Session.expire().The
Sessionobject’s default behavior is to expire all state whenever theSession.rollback()orSession.commit()methods are called, so that new state can be loaded for the new transaction. For this reason, callingSession.expire_all()should not be needed when autocommit isFalse, assuming the transaction is isolated.
-
method
sqlalchemy.orm.session.Session.expunge(instance)¶ Remove the instance from this
Session.This will free all internal references to the instance. Cascading will be applied according to the expunge cascade rule.
-
method
sqlalchemy.orm.session.Session.expunge_all()¶ Remove all object instances from this
Session.This is equivalent to calling
expunge(obj)on all objects in thisSession.
-
method
sqlalchemy.orm.session.Session.flush(objects=None)¶ Flush all the object changes to the database.
Writes out all pending object creations, deletions and modifications to the database as INSERTs, DELETEs, UPDATEs, etc. Operations are automatically ordered by the Session’s unit of work dependency solver.
Database operations will be issued in the current transactional context and do not affect the state of the transaction, unless an error occurs, in which case the entire transaction is rolled back. You may flush() as often as you like within a transaction to move changes from Python to the database’s transaction buffer.
For
autocommitSessions with no active manual transaction, flush() will create a transaction on the fly that surrounds the entire set of operations into the flush.- Parameters:
objects –
Optional; restricts the flush operation to operate only on elements that are in the given collection.
This feature is for an extremely narrow set of use cases where particular objects may need to be operated upon before the full flush() occurs. It is not intended for general use.
-
method
sqlalchemy.orm.session.Session.get_bind(mapper=None, clause=None)¶ Return a “bind” to which this
Sessionis bound.The “bind” is usually an instance of
Engine, except in the case where theSessionhas been explicitly bound directly to aConnection.For a multiply-bound or unbound
Session, themapperorclausearguments are used to determine the appropriate bind to return.Note that the “mapper” argument is usually present when
Session.get_bind()is called via an ORM operation such as aSession.query(), each individual INSERT/UPDATE/DELETE operation within aSession.flush(), call, etc.The order of resolution is:
if mapper given and
Session.bindsis present, locate a bind based first on the mapper in use, then on the mapped class in use, then on any base classes that are present in the__mro__of the mapped class, from more specific superclasses to more general.if clause given and
Session.bindsis present, locate a bind based onTableobjects found in the given clause present inSession.binds.if
Session.bindsis present, return that.if clause given, attempt to return a bind linked to the
MetaDataultimately associated with the clause.if mapper given, attempt to return a bind linked to the
MetaDataultimately associated with theTableor other selectable to which the mapper is mapped.No bind can be found,
UnboundExecutionErroris raised.
Note that the
Session.get_bind()method can be overridden on a user-defined subclass ofSessionto provide any kind of bind resolution scheme. See the example at Custom Vertical Partitioning.- Parameters:
mapper – Optional
mapper()mapped class or instance ofMapper. The bind can be derived from aMapperfirst by consulting the “binds” map associated with thisSession, and secondly by consulting theMetaDataassociated with theTableto which theMapperis mapped for a bind.clause – A
ClauseElement(i.e.select(),text(), etc.). If themapperargument is not present or could not produce a bind, the given expression construct will be searched for a bound element, typically aTableassociated with boundMetaData.
-
classmethod
sqlalchemy.orm.session.Session.identity_key(orm_util, *args, **kwargs)¶ inherited from the
sqlalchemy.orm.session._SessionClassMethods.identity_keymethod ofsqlalchemy.orm.session._SessionClassMethodsReturn an identity key.
This is an alias of
identity_key().
-
attribute
sqlalchemy.orm.session.Session.identity_map = None¶ A mapping of object identities to objects themselves.
Iterating through
Session.identity_map.values()provides access to the full set of persistent objects (i.e., those that have row identity) currently in the session.See also
identity_key()- helper function to produce the keys used in this dictionary.
-
attribute
sqlalchemy.orm.session.Session.info¶ A user-modifiable dictionary.
The initial value of this dictionary can be populated using the
infoargument to theSessionconstructor orsessionmakerconstructor or factory methods. The dictionary here is always local to thisSessionand can be modified independently of all otherSessionobjects.New in version 0.9.0.
-
method
sqlalchemy.orm.session.Session.invalidate()¶ Close this Session, using connection invalidation.
This is a variant of
Session.close()that will additionally ensure that theConnection.invalidate()method will be called on allConnectionobjects. This can be called when the database is known to be in a state where the connections are no longer safe to be used.E.g.:
try: sess = Session() sess.add(User()) sess.commit() except gevent.Timeout: sess.invalidate() raise except: sess.rollback() raise
This clears all items and ends any transaction in progress.
If this session were created with
autocommit=False, a new transaction is immediately begun. Note that this new transaction does not use any connection resources until they are first needed.New in version 0.9.9.
-
attribute
sqlalchemy.orm.session.Session.is_active¶ True if this
Sessionis in “transaction mode” and is not in “partial rollback” state.The
Sessionin its default mode ofautocommit=Falseis essentially always in “transaction mode”, in that aSessionTransactionis associated with it as soon as it is instantiated. ThisSessionTransactionis immediately replaced with a new one as soon as it is ended, due to a rollback, commit, or close operation.“Transaction mode” does not indicate whether or not actual database connection resources are in use; the
SessionTransactionobject coordinates among zero or more actual database transactions, and starts out with none, accumulating individual DBAPI connections as different data sources are used within its scope. The best way to track when a particularSessionhas actually begun to use DBAPI resources is to implement a listener using theSessionEvents.after_begin()method, which will deliver both theSessionas well as the targetConnectionto a user-defined event listener.The “partial rollback” state refers to when an “inner” transaction, typically used during a flush, encounters an error and emits a rollback of the DBAPI connection. At this point, the
Sessionis in “partial rollback” and awaits for the user to callSession.rollback(), in order to close out the transaction stack. It is in this “partial rollback” period that theis_activeflag returns False. After the call toSession.rollback(), theSessionTransactionis replaced with a new one andis_activereturnsTrueagain.When a
Sessionis used inautocommit=Truemode, theSessionTransactionis only instantiated within the scope of a flush call, or whenSession.begin()is called. Sois_activewill always beFalseoutside of a flush orSession.begin()block in this mode, and will beTruewithin theSession.begin()block as long as it doesn’t enter “partial rollback” state.From all the above, it follows that the only purpose to this flag is for application frameworks that wish to detect if a “rollback” is necessary within a generic error handling routine, for
Sessionobjects that would otherwise be in “partial rollback” mode. In a typical integration case, this is also not necessary as it is standard practice to emitSession.rollback()unconditionally within the outermost exception catch.To track the transactional state of a
Sessionfully, use event listeners, primarily theSessionEvents.after_begin(),SessionEvents.after_commit(),SessionEvents.after_rollback()and related events.
-
method
sqlalchemy.orm.session.Session.is_modified(instance, include_collections=True, passive=None)¶ Return
Trueif the given instance has locally modified attributes.This method retrieves the history for each instrumented attribute on the instance and performs a comparison of the current value to its previously committed value, if any.
It is in effect a more expensive and accurate version of checking for the given instance in the
Session.dirtycollection; a full test for each attribute’s net “dirty” status is performed.E.g.:
return session.is_modified(someobject)
A few caveats to this method apply:
Instances present in the
Session.dirtycollection may reportFalsewhen tested with this method. This is because the object may have received change events via attribute mutation, thus placing it inSession.dirty, but ultimately the state is the same as that loaded from the database, resulting in no net change here.Scalar attributes may not have recorded the previously set value when a new value was applied, if the attribute was not loaded, or was expired, at the time the new value was received - in these cases, the attribute is assumed to have a change, even if there is ultimately no net change against its database value. SQLAlchemy in most cases does not need the “old” value when a set event occurs, so it skips the expense of a SQL call if the old value isn’t present, based on the assumption that an UPDATE of the scalar value is usually needed, and in those few cases where it isn’t, is less expensive on average than issuing a defensive SELECT.
The “old” value is fetched unconditionally upon set only if the attribute container has the
active_historyflag set toTrue. This flag is set typically for primary key attributes and scalar object references that are not a simple many-to-one. To set this flag for any arbitrary mapped column, use theactive_historyargument withcolumn_property().
- Parameters:
instance – mapped instance to be tested for pending changes.
include_collections – Indicates if multivalued collections should be included in the operation. Setting this to
Falseis a way to detect only local-column based properties (i.e. scalar columns or many-to-one foreign keys) that would result in an UPDATE for this instance upon flush.passive –
not used
Deprecated since version 0.8: The
Session.is_modified.passiveflag is deprecated and will be removed in a future release. The flag is no longer used and is ignored.
-
method
sqlalchemy.orm.session.Session.merge(instance, load=True)¶ Copy the state of a given instance into a corresponding instance within this
Session.Session.merge()examines the primary key attributes of the source instance, and attempts to reconcile it with an instance of the same primary key in the session. If not found locally, it attempts to load the object from the database based on primary key, and if none can be located, creates a new instance. The state of each attribute on the source instance is then copied to the target instance. The resulting target instance is then returned by the method; the original source instance is left unmodified, and un-associated with theSessionif not already.This operation cascades to associated instances if the association is mapped with
cascade="merge".See Merging for a detailed discussion of merging.
Changed in version 1.1: -
Session.merge()will now reconcile pending objects with overlapping primary keys in the same way as persistent. See Session.merge resolves pending conflicts the same as persistent for discussion.- Parameters:
instance – Instance to be merged.
load –
Boolean, when False,
merge()switches into a “high performance” mode which causes it to forego emitting history events as well as all database access. This flag is used for cases such as transferring graphs of objects into aSessionfrom a second level cache, or to transfer just-loaded objects into theSessionowned by a worker thread or process without re-querying the database.The
load=Falseuse case adds the caveat that the given object has to be in a “clean” state, that is, has no pending changes to be flushed - even if the incoming object is detached from anySession. This is so that when the merge operation populates local attributes and cascades to related objects and collections, the values can be “stamped” onto the target object as is, without generating any history or attribute events, and without the need to reconcile the incoming data with any existing related objects or collections that might not be loaded. The resulting objects fromload=Falseare always produced as “clean”, so it is only appropriate that the given objects should be “clean” as well, else this suggests a mis-use of the method.
See also
make_transient_to_detached()- provides for an alternative means of “merging” a single object into theSession
-
attribute
sqlalchemy.orm.session.Session.new¶ The set of all instances marked as ‘new’ within this
Session.
-
attribute
sqlalchemy.orm.session.Session.no_autoflush¶ Return a context manager that disables autoflush.
e.g.:
with session.no_autoflush: some_object = SomeClass() session.add(some_object) # won't autoflush some_object.related_thing = session.query(SomeRelated).first()
Operations that proceed within the
with:block will not be subject to flushes occurring upon query access. This is useful when initializing a series of objects which involve existing database queries, where the uncompleted object should not yet be flushed.
-
classmethod
sqlalchemy.orm.session.Session.object_session(instance)¶ inherited from the
sqlalchemy.orm.session._SessionClassMethods.object_sessionmethod ofsqlalchemy.orm.session._SessionClassMethodsReturn the
Sessionto which an object belongs.This is an alias of
object_session().
-
method
sqlalchemy.orm.session.Session.prepare()¶ Prepare the current transaction in progress for two phase commit.
If no transaction is in progress, this method raises an
InvalidRequestError.Only root transactions of two phase sessions can be prepared. If the current transaction is not such, an
InvalidRequestErroris raised.
-
method
sqlalchemy.orm.session.Session.prune()¶ Remove unreferenced instances cached in the identity map.
Deprecated since version 0.7: The
Session.prune()method is deprecated along withSession.weak_identity_map. This method will be removed in a future release.Note that this method is only meaningful if “weak_identity_map” is set to False. The default weak identity map is self-pruning.
Removes any object in this Session’s identity map that is not referenced in user code, modified, new or scheduled for deletion. Returns the number of objects pruned.
-
method
sqlalchemy.orm.session.Session.query(*entities, **kwargs)¶
-
method
sqlalchemy.orm.session.Session.refresh(instance, attribute_names=None, with_for_update=None, lockmode=None)¶ Expire and refresh the attributes on the given instance.
A query will be issued to the database and all attributes will be refreshed with their current database value.
Lazy-loaded relational attributes will remain lazily loaded, so that the instance-wide refresh operation will be followed immediately by the lazy load of that attribute.
Eagerly-loaded relational attributes will eagerly load within the single refresh operation.
Note that a highly isolated transaction will return the same values as were previously read in that same transaction, regardless of changes in database state outside of that transaction - usage of
Session.refresh()usually only makes sense if non-ORM SQL statement were emitted in the ongoing transaction, or if autocommit mode is turned on.- Parameters:
attribute_names – optional. An iterable collection of string attribute names indicating a subset of attributes to be refreshed.
with_for_update –
optional boolean
Trueindicating FOR UPDATE should be used, or may be a dictionary containing flags to indicate a more specific set of FOR UPDATE flags for the SELECT; flags should match the parameters ofQuery.with_for_update(). Supersedes theSession.refresh.lockmodeparameter.New in version 1.2.
lockmode – Passed to the
Queryas used byQuery.with_lockmode(). Superseded bySession.refresh.with_for_update.
-
method
sqlalchemy.orm.session.Session.rollback()¶ Rollback the current transaction in progress.
If no transaction is in progress, this method is a pass-through.
This method rolls back the current transaction or nested transaction regardless of subtransactions being in effect. All subtransactions up to the first real transaction are closed. Subtransactions occur when
begin()is called multiple times.See also
-
method
sqlalchemy.orm.session.Session.scalar(clause, params=None, mapper=None, bind=None, **kw)¶ Like
Session.execute()but return a scalar result.
-
attribute
sqlalchemy.orm.session.Session.transaction = None¶ The current active or inactive
SessionTransaction.
-
method
- class sqlalchemy.orm.session.SessionTransaction(session, parent=None, nested=False)¶
A
Session-level transaction.SessionTransactionis a mostly behind-the-scenes object not normally referenced directly by application code. It coordinates among multipleConnectionobjects, maintaining a database transaction for each one individually, committing or rolling them back all at once. It also provides optional two-phase commit behavior which can augment this coordination operation.The
Session.transactionattribute ofSessionrefers to the currentSessionTransactionobject in use, if any. TheSessionTransaction.parentattribute refers to the parentSessionTransactionin the stack ofSessionTransactionobjects. If this attribute isNone, then this is the top of the stack. If non-None, then thisSessionTransactionrefers either to a so-called “subtransaction” or a “nested” transaction. A “subtransaction” is a scoping concept that demarcates an inner portion of the outermost “real” transaction. A nested transaction, which is indicated when theSessionTransaction.nestedattribute is also True, indicates that thisSessionTransactioncorresponds to a SAVEPOINT.Life Cycle
A
SessionTransactionis associated with aSessionin its default mode ofautocommit=Falseimmediately, associated with no database connections. As theSessionis called upon to emit SQL on behalf of variousEngineorConnectionobjects, a correspondingConnectionand associatedTransactionis added to a collection within theSessionTransactionobject, becoming one of the connection/transaction pairs maintained by theSessionTransaction. The start of aSessionTransactioncan be tracked using theSessionEvents.after_transaction_create()event.The lifespan of the
SessionTransactionends when theSession.commit(),Session.rollback()orSession.close()methods are called. At this point, theSessionTransactionremoves its association with its parentSession. ASessionthat is inautocommit=Falsemode will create a newSessionTransactionto replace it immediately, whereas aSessionthat’s inautocommit=Truemode will remain without aSessionTransactionuntil theSession.begin()method is called. The end of aSessionTransactioncan be tracked using theSessionEvents.after_transaction_end()event.Nesting and Subtransactions
Another detail of
SessionTransactionbehavior is that it is capable of “nesting”. This means that theSession.begin()method can be called while an existingSessionTransactionis already present, producing a newSessionTransactionthat temporarily replaces the parentSessionTransaction. When aSessionTransactionis produced as nested, it assigns itself to theSession.transactionattribute, and it additionally will assign the previousSessionTransactionto itsSession.parentattribute. The behavior is effectively a stack, whereSession.transactionrefers to the current head of the stack, and theSessionTransaction.parentattribute allows traversal up the stack untilSessionTransaction.parentisNone, indicating the top of the stack.When the scope of
SessionTransactionis ended viaSession.commit()orSession.rollback(), it restores its parentSessionTransactionback onto theSession.transactionattribute.The purpose of this stack is to allow nesting of
Session.rollback()orSession.commit()calls in context with various flavors ofSession.begin(). This nesting behavior applies to whenSession.begin_nested()is used to emit a SAVEPOINT transaction, and is also used to produce a so-called “subtransaction” which allows a block of code to use a begin/rollback/commit sequence regardless of whether or not its enclosing code block has begun a transaction. Theflush()method, whether called explicitly or via autoflush, is the primary consumer of the “subtransaction” feature, in that it wishes to guarantee that it works within in a transaction block regardless of whether or not theSessionis in transactional mode when the method is called.Note that the flush process that occurs within the “autoflush” feature as well as when the
Session.flush()method is used always creates aSessionTransactionobject. This object is normally a subtransaction, unless theSessionis in autocommit mode and no transaction exists at all, in which case it’s the outermost transaction. Any event-handling logic or other inspection logic needs to take into account whether aSessionTransactionis the outermost transaction, a subtransaction, or a “nested” / SAVEPOINT transaction.See also
SessionEvents.after_transaction_create()SessionEvents.after_transaction_end()-
attribute
sqlalchemy.orm.session.SessionTransaction.nested = False¶ Indicates if this is a nested, or SAVEPOINT, transaction.
When
SessionTransaction.nestedis True, it is expected thatSessionTransaction.parentwill be True as well.
-
attribute
sqlalchemy.orm.session.SessionTransaction.parent¶ The parent
SessionTransactionof thisSessionTransaction.If this attribute is
None, indicates thisSessionTransactionis at the top of the stack, and corresponds to a real “COMMIT”/”ROLLBACK” block. If non-None, then this is either a “subtransaction” or a “nested” / SAVEPOINT transaction. If theSessionTransaction.nestedattribute isTrue, then this is a SAVEPOINT, and ifFalse, indicates this a subtransaction.New in version 1.0.16: - use ._parent for previous versions
-
attribute
Session Utilities¶
| Object Name | Description |
|---|---|
Close all sessions in memory. |
|
make_transient(instance) |
Alter the state of the given instance so that it is transient. |
make_transient_to_detached(instance) |
Make the given transient instance detached. |
object_session(instance) |
Return the |
was_deleted(object_) |
Return True if the given object was deleted within a session flush. |
- function sqlalchemy.orm.session.close_all_sessions()¶
Close all sessions in memory.
This function consults a global registry of all
Sessionobjects and callsSession.close()on them, which resets them to a clean state.This function is not for general use but may be useful for test suites within the teardown scheme.
New in version 1.3.
- function sqlalchemy.orm.session.make_transient(instance)¶
Alter the state of the given instance so that it is transient.
Note
make_transient()is a special-case function for advanced use cases only.The given mapped instance is assumed to be in the persistent or detached state. The function will remove its association with any
Sessionas well as itsInstanceState.identity. The effect is that the object will behave as though it were newly constructed, except retaining any attribute / collection values that were loaded at the time of the call. TheInstanceState.deletedflag is also reset if this object had been deleted as a result of usingSession.delete().Warning
make_transient()does not “unexpire” or otherwise eagerly load ORM-mapped attributes that are not currently loaded at the time the function is called. This includes attributes which:were expired via
Session.expire()were expired as the natural effect of committing a session transaction, e.g.
Session.commit()are normally lazy loaded but are not currently loaded
are “deferred” via Deferred Column Loading and are not yet loaded
were not present in the query which loaded this object, such as that which is common in joined table inheritance and other scenarios.
After
make_transient()is called, unloaded attributes such as those above will normally resolve to the valueNonewhen accessed, or an empty collection for a collection-oriented attribute. As the object is transient and un-associated with any database identity, it will no longer retrieve these values.See also
- function sqlalchemy.orm.session.make_transient_to_detached(instance)¶
Make the given transient instance detached.
Note
make_transient_to_detached()is a special-case function for advanced use cases only.All attribute history on the given instance will be reset as though the instance were freshly loaded from a query. Missing attributes will be marked as expired. The primary key attributes of the object, which are required, will be made into the “key” of the instance.
The object can then be added to a session, or merged possibly with the load=False flag, at which point it will look as if it were loaded that way, without emitting SQL.
This is a special use case function that differs from a normal call to
Session.merge()in that a given persistent state can be manufactured without any SQL calls.New in version 0.9.5.
- function sqlalchemy.orm.session.object_session(instance)¶
Return the
Sessionto which the given instance belongs.This is essentially the same as the
InstanceState.sessionaccessor. See that attribute for details.
- function sqlalchemy.orm.util.was_deleted(object_)¶
Return True if the given object was deleted within a session flush.
This is regardless of whether or not the object is persistent or detached.
See also
Attribute and State Management Utilities¶
These functions are provided by the SQLAlchemy attribute instrumentation API to provide a detailed interface for dealing with instances, attribute values, and history. Some of them are useful when constructing event listener functions, such as those described in ORM Events.
| Object Name | Description |
|---|---|
del_attribute(instance, key) |
Delete the value of an attribute, firing history events. |
flag_dirty(instance) |
Mark an instance as ‘dirty’ without any specific attribute mentioned. |
flag_modified(instance, key) |
Mark an attribute on an instance as ‘modified’. |
get_attribute(instance, key) |
Get the value of an attribute, firing any callables required. |
get_history(obj, key[, passive]) |
Return a |
A 3-tuple of added, unchanged and deleted values, representing the changes which have occurred on an instrumented attribute. |
|
init_collection(obj, key) |
Initialize a collection attribute and return the collection adapter. |
Return the |
|
is_instrumented(instance, key) |
Return True if the given attribute on the given instance is instrumented by the attributes package. |
object_state(instance) |
Given an object, return the |
set_attribute(instance, key, value[, initiator]) |
Set the value of an attribute, firing history events. |
set_committed_value(instance, key, value) |
Set the value of an attribute with no history events. |
- function sqlalchemy.orm.util.object_state(instance)¶
Given an object, return the
InstanceStateassociated with the object.Raises
sqlalchemy.orm.exc.UnmappedInstanceErrorif no mapping is configured.Equivalent functionality is available via the
inspect()function as:inspect(instance)
Using the inspection system will raise
sqlalchemy.exc.NoInspectionAvailableif the instance is not part of a mapping.
- function sqlalchemy.orm.attributes.del_attribute(instance, key)¶
Delete the value of an attribute, firing history events.
This function may be used regardless of instrumentation applied directly to the class, i.e. no descriptors are required. Custom attribute management schemes will need to make usage of this method to establish attribute state as understood by SQLAlchemy.
- function sqlalchemy.orm.attributes.get_attribute(instance, key)¶
Get the value of an attribute, firing any callables required.
This function may be used regardless of instrumentation applied directly to the class, i.e. no descriptors are required. Custom attribute management schemes will need to make usage of this method to make usage of attribute state as understood by SQLAlchemy.
- function sqlalchemy.orm.attributes.get_history(obj, key, passive=symbol('PASSIVE_OFF'))¶
Return a
Historyrecord for the given object and attribute key.This is the pre-flush history for a given attribute, which is reset each time the
Sessionflushes changes to the current database transaction.Note
Prefer to use the
AttributeState.historyandAttributeState.load_history()accessors to retrieve theHistoryfor instance attributes.- Parameters:
obj – an object whose class is instrumented by the attributes package.
key – string attribute name.
passive – indicates loading behavior for the attribute if the value is not already present. This is a bitflag attribute, which defaults to the symbol
PASSIVE_OFFindicating all necessary SQL should be emitted.
See also
AttributeState.load_history()- retrieve history using loader callables if the value is not locally present.
- function sqlalchemy.orm.attributes.init_collection(obj, key)¶
Initialize a collection attribute and return the collection adapter.
This function is used to provide direct access to collection internals for a previously unloaded attribute. e.g.:
collection_adapter = init_collection(someobject, 'elements') for elem in values: collection_adapter.append_without_event(elem)
For an easier way to do the above, see
set_committed_value().- Parameters:
obj – a mapped object
key – string attribute name where the collection is located.
- function sqlalchemy.orm.attributes.flag_modified(instance, key)¶
Mark an attribute on an instance as ‘modified’.
This sets the ‘modified’ flag on the instance and establishes an unconditional change event for the given attribute. The attribute must have a value present, else an
InvalidRequestErroris raised.To mark an object “dirty” without referring to any specific attribute so that it is considered within a flush, use the
flag_dirty()call.See also
- function sqlalchemy.orm.attributes.flag_dirty(instance)¶
Mark an instance as ‘dirty’ without any specific attribute mentioned.
This is a special operation that will allow the object to travel through the flush process for interception by events such as
SessionEvents.before_flush(). Note that no SQL will be emitted in the flush process for an object that has no changes, even if marked dirty via this method. However, aSessionEvents.before_flush()handler will be able to see the object in theSession.dirtycollection and may establish changes on it, which will then be included in the SQL emitted.New in version 1.2.
See also
- function sqlalchemy.orm.attributes.instance_state()¶
Return the
InstanceStatefor a given mapped object.This function is the internal version of
object_state(). Theobject_state()and/or theinspect()function is preferred here as they each emit an informative exception if the given object is not mapped.
- function sqlalchemy.orm.instrumentation.is_instrumented(instance, key)¶
Return True if the given attribute on the given instance is instrumented by the attributes package.
This function may be used regardless of instrumentation applied directly to the class, i.e. no descriptors are required.
- function sqlalchemy.orm.attributes.set_attribute(instance, key, value, initiator=None)¶
Set the value of an attribute, firing history events.
This function may be used regardless of instrumentation applied directly to the class, i.e. no descriptors are required. Custom attribute management schemes will need to make usage of this method to establish attribute state as understood by SQLAlchemy.
- Parameters:
instance – the object that will be modified
key – string name of the attribute
value – value to assign
initiator –
an instance of
Eventthat would have been propagated from a previous event listener. This argument is used when theset_attribute()function is being used within an existing event listening function where anEventobject is being supplied; the object may be used to track the origin of the chain of events.New in version 1.2.3.
- function sqlalchemy.orm.attributes.set_committed_value(instance, key, value)¶
Set the value of an attribute with no history events.
Cancels any previous history present. The value should be a scalar value for scalar-holding attributes, or an iterable for any collection-holding attribute.
This is the same underlying method used when a lazy loader fires off and loads additional data from the database. In particular, this method can be used by application code which has loaded additional attributes or collections through separate queries, which can then be attached to an instance as though it were part of its original loaded state.
- class sqlalchemy.orm.attributes.History(added, unchanged, deleted)¶
A 3-tuple of added, unchanged and deleted values, representing the changes which have occurred on an instrumented attribute.
The easiest way to get a
Historyobject for a particular attribute on an object is to use theinspect()function:from sqlalchemy import inspect hist = inspect(myobject).attrs.myattribute.history
Each tuple member is an iterable sequence:
added- the collection of items added to the attribute (the first tuple element).unchanged- the collection of items that have not changed on the attribute (the second tuple element).deleted- the collection of items that have been removed from the attribute (the third tuple element).
Members
Class signature
class
sqlalchemy.orm.attributes.History(sqlalchemy.orm.attributes.History)-
method
sqlalchemy.orm.attributes.History.empty()¶ Return True if this
Historyhas no changes and no existing, unchanged state.
-
method
sqlalchemy.orm.attributes.History.has_changes()¶ Return True if this
Historyhas changes.
-
method
sqlalchemy.orm.attributes.History.non_added()¶ Return a collection of unchanged + deleted.
-
method
sqlalchemy.orm.attributes.History.non_deleted()¶ Return a collection of added + unchanged.
-
method
sqlalchemy.orm.attributes.History.sum()¶ Return a collection of added + unchanged + deleted.