summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/mods/selectresults.py
Commit message (Collapse)AuthorAgeFilesLines
* r4695 merged to trunk; trunk now becomes 0.5.Mike Bayer2008-05-091-7/+0
| | | | 0.4 development continues at /sqlalchemy/branches/rel_0_4
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to ↵Mike Bayer2007-07-271-1/+1
| | | | maintenance branch in branches/rel_0_3.
* migrated (most) docstrings to pep-257 format, docstring generator using ↵Mike Bayer2007-02-251-1/+1
| | | | | | straight <pre> + trim() func for now. applies most of [ticket:214], compliemnts of Lele Gaifax
* merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1Mike Bayer2006-05-251-83/+4
|
* c. martinez' fix to slicing logicMike Bayer2006-05-181-2/+2
|
* mapper's querying facilities migrated to new query.Query() object, which can ↵Mike Bayer2006-04-061-9/+9
| | | | | | | | | receive session-specific context via the mapper.using() statement. reuslting object instances will be bound to this session, but query execution still handled by the SQLEngines implicit in the mapper's Table objects. session now propigates to the unitofwork UOWTransaction object, as well as mapper's save_obj/delete_obj via the UOWTransaction it receives. UOWTransaction explicitly calls the Session for the engine corresponding to each Mapper in the flush operation, although the Session does not yet affect the choice of engines used, and mapper save/delete is still using the Table's implicit SQLEngine. changed internal unitofwork commit() method to be called flush(). removed all references to 'engine' from mapper module, including adding insert/update specific SQLEngine methods such as last_inserted_ids, last_inserted_params, etc. to the returned ResultProxy so that Mapper need not know which SQLEngine was used for the execute. changes to unit tests, SelectResults to support the new Query object.
* adjustments...Mike Bayer2006-03-311-0/+2
|
* tweak...Mike Bayer2006-03-311-1/+1
|
* introducing...the mods package ! the SelectResults thing moves as the first modMike Bayer2006-03-311-0/+84