summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine/base.py
Commit message (Expand)AuthorAgeFilesLines
...
* happy new yearMike Bayer2008-01-011-1/+1
* - added is_disconnect() support for oracleMike Bayer2007-12-291-19/+26
* - auto-reconnect support improved; a Connection can now automaticallyMike Bayer2007-12-191-34/+71
* introductory docstring bonanzaMike Bayer2007-12-181-1/+1
* get most oracle tests in sql working again....Mike Bayer2007-12-181-2/+11
* - cleanup; lambdas removed from properties; properties mirror same-named func...Mike Bayer2007-12-181-26/+57
* Fixed minor reST issueLele Gaifax2007-12-151-5/+4
* - flush() refactor merged from uow_nontree branch r3871-r3885Mike Bayer2007-12-081-6/+5
* - basic framework for generic functions, [ticket:615]Mike Bayer2007-12-051-1/+1
* - column labels in the form "tablename.columname", i.e. with a dot, are nowMike Bayer2007-11-271-4/+15
* - named_with_column becomes an attributeMike Bayer2007-11-251-29/+47
* - decruftify old visitors used by orm, convert to functions thatMike Bayer2007-11-241-7/+12
* - all kinds of cleanup, tiny-to-slightly-significant speed improvementsMike Bayer2007-11-241-16/+12
* Migrated Connection.properties to Connection.info ('info' is the new standard...Jason Kirtland2007-11-181-2/+7
* - DeferredColumnLoader checks row for column, if present sends it toMike Bayer2007-11-141-0/+2
* - anonymous column expressions are automatically labeled.Mike Bayer2007-11-101-0/+1
* - <Engine|Connection>._execute_clauseelement becomes a public methodMike Bayer2007-11-071-5/+8
* - fixed the close() method on Transaction when using strategy='threadlocal'Mike Bayer2007-11-071-1/+1
* - rewritten ClauseAdapter merged from the eager_minus_join branch; this is a ...Mike Bayer2007-11-031-1/+1
* - merged factor_down_bindparams branch.Mike Bayer2007-11-011-36/+35
* - inlined a couple of context variablesMike Bayer2007-10-271-17/+14
* Added support for dialects that have both sequences and autoincrementing PKs.Jason Kirtland2007-10-231-4/+9
* - The post_exec() hook now gets invoked before autocommit fires.Jason Kirtland2007-10-231-2/+3
* - Loosened up test_cant_execute_join for oracle (probably) + bonus typo fixJason Kirtland2007-10-081-2/+2
* - The no-arg ResultProxy._row_processor() is now the class attributeJason Kirtland2007-10-021-92/+90
* - Removed duplicate RowProxy.__len__ definition and some range(0, 1) lintJason Kirtland2007-10-021-5/+7
* Dropped the leading '__' from generated savepoint names, '_' isn't universall...Jason Kirtland2007-09-271-1/+1
* - created a link between QueryContext and SelectionContext; the attributeMike Bayer2007-09-261-13/+3
* - columns from Alias objects, when used to target result-row columns, must ma...Mike Bayer2007-09-241-4/+13
* - took out method calls for oid_columnMike Bayer2007-09-041-35/+33
* - removed "parameters" argument from clauseelement.compile(), replaced withMike Bayer2007-09-041-29/+37
* - mapper compilation has been reorganized such that most compilationMike Bayer2007-09-021-1/+0
* sequence pre-executes dont create an ExecutionContext, use straight cursorMike Bayer2007-09-011-22/+34
* factored out uses_sequences_for_inserts() intoMike Bayer2007-09-011-0/+3
* - got all examples workingMike Bayer2007-09-011-4/+9
* - merged inline inserts branchMike Bayer2007-09-011-11/+20
* - tightened down the screws on logging a little bitMike Bayer2007-08-221-8/+6
* - restored engine.echo flagMike Bayer2007-08-221-0/+1
* Housekeeping.Jason Kirtland2007-08-221-2/+2
* -removed echo_property() function, moved logging checks toMike Bayer2007-08-211-5/+3
* - implemented __len__() accessor on RowProxyMike Bayer2007-08-211-0/+3
* removed unnecessary _branch callsMike Bayer2007-08-201-3/+2
* - method call removalMike Bayer2007-08-201-31/+15
* - Engine and TLEngine assume "threadlocal" behavior on Pool; both use connect()Mike Bayer2007-08-201-4/+5
* - Connection.begin() no longer accepts nested=True, a possible source of conf...Jason Kirtland2007-08-191-231/+333
* 1. Module layout. sql.py and related move into a package called "sql".Mike Bayer2007-08-181-80/+52
* - added close() method to Transaction. closes out a transaction using rollbackMike Bayer2007-08-171-0/+14
* - merged "fasttypes" branch. this branch changes the signatureMike Bayer2007-08-141-12/+12
* Removed unused imports, other import adjustments per pyflakesJason Kirtland2007-08-131-1/+1
* added "should_commit()" hook to ExecutionContext. dialects can override with...Mike Bayer2007-08-121-3/+8