summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine/base.py
Commit message (Expand)AuthorAgeFilesLines
* - Connection.invalidate() checks for closed statusMike Bayer2008-12-111-0/+2
* has_sequence() now takes the current "schema" argument intoMike Bayer2008-09-031-0/+1
* back-merged current 0.4 trunk into rel_0_4 branch, which will become the 0.4 ...Mike Bayer2008-05-091-573/+941
* took out extra exception catch/raise SQLError in places where it would alreadyMike Bayer2007-07-271-13/+4
* - very rudimental support for OUT parameters added; use sql.outparam(name, type)Mike Bayer2007-07-261-0/+1
* - Compiled is just an object now. the ClauseVisitor portionMike Bayer2007-07-261-2/+7
* - added array slice support to row[<index>] [ticket:686]Mike Bayer2007-07-261-1/+5
* - changed 'desired_columns' argument to 'include_columns'Mike Bayer2007-07-261-6/+6
* - ANSICompiler now uses its own traversal when compiling, returning a composedMike Bayer2007-07-261-4/+0
* "You can also specify a list or set of column names to autoload, if you only ...Jonathan Ellis2007-07-261-6/+7
* - removed the ridiculous AbstractDialect do-nothing classMike Bayer2007-07-251-1/+1
* add __repr__ for engine, metadata, sqlsoupJonathan Ellis2007-07-251-0/+3
* ColumnDefault functions pass ExecutionContext to callables which accept a sin...Mike Bayer2007-07-231-9/+18
* _ConnectionRecord gains a .properties collection, with contents scoped toJason Kirtland2007-07-231-0/+2
* - refinement of connection.execute() , parameter processing behaviorMike Bayer2007-07-231-82/+67
* Remove unused imports, typo and light formatting tweaks.Jason Kirtland2007-07-191-1/+1
* - removed ancient threadlocal/legacy_session modsMike Bayer2007-07-171-1/+1
* - moved query._with_parent into prop.compare() callsMike Bayer2007-07-171-2/+0
* fix to connection-bound compiled objectsMike Bayer2007-07-161-1/+1
* - converted all anonymous labels and aliases to be generated within the compi...Mike Bayer2007-07-161-1/+3
* merged trunk r2901-2924Mike Bayer2007-07-161-5/+3
* - bind test in query.ormMike Bayer2007-07-151-1/+1
* - merged trunk r2880-r2901 (slightly manually for 2900-2901)Mike Bayer2007-07-141-11/+11
* context manager support for sql transactionsAnts Aasma2007-07-141-0/+9
* add support for two phase commits, nested subtransactions and savepoints. ref...Ants Aasma2007-07-141-25/+174
* dont log statement + parameters if logging is not enabledMike Bayer2007-07-121-2/+3
* make use of the isinstance(obj, (A,B)) idiom, makes the code a bit shorter an...Ants Aasma2007-07-101-3/+3
* moved oracles "auto_convert_lobs" logic into a generic dialectMike Bayer2007-07-011-2/+17
* merge 2791 from trunk, fix for bad error message (ticket #607)Ants Aasma2007-06-261-1/+1
* removed ConnectionProvider. engines have a "pool" attribute now.Mike Bayer2007-06-241-31/+9
* - merge of generative_sql branchMike Bayer2007-06-241-5/+87
* - result sets from CRUD operations close their underlying cursor immediately.Mike Bayer2007-06-141-4/+14
* added a self-creating dict that takes advantage of 2.5's __missing__, impleme...Mike Bayer2007-05-311-30/+28
* - added undefer_group() MapperOption, sets a set of "deferred" columns joined...Mike Bayer2007-05-311-1/+1
* remove func call for getting at result proxy dialect. func call count drops ...Mike Bayer2007-05-311-1/+1
* ResultProxy pre-caches the dialect_impl()s for each TypeEngine, saving theMike Bayer2007-05-311-4/+7
* - merged "find the equivalent columns" logic together (although both methodol...Mike Bayer2007-05-261-0/+3
* - refactor ! MapperProperty now has create_row_processor() method, returnsMike Bayer2007-05-261-0/+3
* - parenthesis are applied to clauses via a new _Grouping construct.Mike Bayer2007-05-141-1/+1
* propigated detach() and invalidate() methods to Connection.Mike Bayer2007-05-101-0/+24
* - applied YAGNI to supports_autoclose_results (this issue would be handled by...Mike Bayer2007-04-301-63/+50
* - added 'url' attribute to EngineMike Bayer2007-04-291-3/+4
* - fixed textual select elements that got broke the other dayMike Bayer2007-04-291-5/+2
* - informix support added ! courtesy James ZhangMike Bayer2007-04-211-1/+1
* some docstringsMike Bayer2007-04-191-2/+26
* added "recreate()" argument to connection pool classesMike Bayer2007-04-171-0/+2
* - slight tweak to raw execute() change to also support tuples,Mike Bayer2007-04-031-2/+2
* for #516, moved the "disconnect check" step out of pool and back into base.py...Mike Bayer2007-04-031-4/+7
* - merged the patch from #516 + fixesMike Bayer2007-04-021-9/+24
* - merged the "execcontext" branch, refactors engine/dialect codepathsMike Bayer2007-04-021-250/+268