~ubuntu-branches/debian/sid/sqlalchemy/sid

« back to all changes in this revision

Viewing changes to doc/build/orm/session.rst

  • Committer: Bazaar Package Importer
  • Author(s): Piotr Ożarowski
  • Date: 2011-10-18 00:02:50 UTC
  • mfrom: (1.4.16 upstream)
  • Revision ID: james.westby@ubuntu.com-20111018000250-prowqcleosluapxg
Tags: 0.7.3-2
remove build-indep from build target's dependencies (closes: 645697)

Show diffs side-by-side

added added

removed removed

Lines of Context:
105
105
application thread.   Information on using contextual sessions
106
106
is at :ref:`unitofwork_contextual`.
107
107
 
108
 
Adding additional configuration to an Existing sessionmaker()
 
108
Adding Additional Configuration to an Existing sessionmaker()
109
109
--------------------------------------------------------------
110
110
 
111
111
A common scenario is where the :func:`.sessionmaker` is invoked 
161
161
Using the Session
162
162
==================
163
163
 
 
164
.. _session_object_states:
 
165
 
164
166
Quickie Intro to Object States
165
167
------------------------------
166
168
 
192
194
operations (such as trying to save the same object to two different sessions
193
195
at the same time).
194
196
 
195
 
Frequently Asked Questions
196
 
--------------------------
 
197
.. _session_faq:
 
198
 
 
199
Session Frequently Asked Questions
 
200
-----------------------------------
197
201
 
198
202
* When do I make a :func:`.sessionmaker` ?
199
203
 
1533
1537
.. autoclass:: sqlalchemy.orm.session.Session
1534
1538
   :members:
1535
1539
 
 
1540
.. autoclass:: sqlalchemy.orm.session.SessionTransaction
 
1541
   :members:
 
1542
 
1536
1543
Session Utilites
1537
1544
----------------
1538
1545