summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine/default.py
Commit message (Expand)AuthorAgeFilesLines
* - create_all(), drop_all(), create(), drop() all raiseMike Bayer2008-06-221-2/+5
* back-merged current 0.4 trunk into rel_0_4 branch, which will become the 0.4 ...Mike Bayer2008-05-091-217/+261
* - removed problematic generate_dbapi_typemap() method. its hardcoded just fo...Mike Bayer2007-07-261-23/+4
* temporarily disabling genrated type_map which breaks all the othe rdialectsMike Bayer2007-07-261-4/+10
* - very rudimental support for OUT parameters added; use sql.outparam(name, type)Mike Bayer2007-07-261-2/+3
* patched fix for [ticket:677], thanks !Mike Bayer2007-07-231-2/+2
* ColumnDefault functions pass ExecutionContext to callables which accept a sin...Mike Bayer2007-07-231-7/+9
* - refinement of connection.execute() , parameter processing behaviorMike Bayer2007-07-231-42/+44
* Remove unused imports, typo and light formatting tweaks.Jason Kirtland2007-07-191-3/+3
* removed print statement...this is the year i start using a debuggerMike Bayer2007-07-191-1/+0
* - all "type" keyword arguments, such as those to bindparam(), column(),Mike Bayer2007-07-191-0/+4
* - removed ancient threadlocal/legacy_session modsMike Bayer2007-07-171-2/+1
* - converted all anonymous labels and aliases to be generated within the compi...Mike Bayer2007-07-161-0/+5
* add support for two phase commits, nested subtransactions and savepoints. ref...Ants Aasma2007-07-141-0/+9
* moved oracles "auto_convert_lobs" logic into a generic dialectMike Bayer2007-07-011-1/+19
* removed ConnectionProvider. engines have a "pool" attribute now.Mike Bayer2007-06-241-11/+0
* - merged last_inserted_ids() fix from trunk [changeset:2743]Mike Bayer2007-06-171-1/+2
* - merged trunk 2629-2730Mike Bayer2007-06-141-0/+2
* - result sets from CRUD operations close their underlying cursor immediately.Mike Bayer2007-06-141-1/+1
* - result.last_inserted_ids() should return a list that is identicallyMike Bayer2007-06-111-6/+3
* - applied YAGNI to supports_autoclose_results (this issue would be handled by...Mike Bayer2007-04-301-1/+0
* - added 'url' attribute to EngineMike Bayer2007-04-291-1/+2
* non-db identifier length raised arbitrarily highMike Bayer2007-04-201-1/+1
* support positional parameters at the execute level even for DBs where we dont...Mike Bayer2007-04-191-2/+4
* - tweak to restore Python 2.3 compatabilityJason Kirtland2007-04-191-1/+1
* added "recreate()" argument to connection pool classesMike Bayer2007-04-171-3/+2
* - got unicode schemas to work with postgresMike Bayer2007-04-151-5/+19
* for #516, moved the "disconnect check" step out of pool and back into base.py...Mike Bayer2007-04-031-0/+3
* - merged the "execcontext" branch, refactors engine/dialect codepathsMike Bayer2007-04-021-53/+73
* thank you, SVN, for being completely idiotic and non-intutive. rolling back i...Mike Bayer2007-03-301-45/+27
* current progress with exec branchMike Bayer2007-03-291-27/+45
* added "supports_unicode_statements()" step to dialect/execute_raw so that DB'...Mike Bayer2007-03-281-0/+4
* - column label and bind param "truncation" also generateMike Bayer2007-03-281-6/+6
* - column labels are now generated in the compilation phase, whichMike Bayer2007-03-241-0/+5
* - oracle:Mike Bayer2007-03-101-2/+6
* migrated (most) docstrings to pep-257 format, docstring generator using strai...Mike Bayer2007-02-251-35/+77
* - added PrefetchingResultProxy support to pre-fetch LOB columns when they areMike Bayer2007-02-061-0/+2
* - more quoting fixes for [ticket:450]...quoting more aggressive (but still sk...Mike Bayer2007-02-041-5/+4
* oracle can conditionally decide if it wants to say "use rowid" in a select st...Mike Bayer2007-01-241-1/+1
* - postgres no longer uses client-side cursors, uses more efficient server sideMike Bayer2007-01-101-0/+2
* copyright updateMike Bayer2007-01-051-1/+1
* - made kwargs parsing to Table strict; removed various obsoluete "redefine=Tr...Mike Bayer2006-11-261-3/+24
* - create_engine() reworked to be strict about incoming **kwargs. all keywordMike Bayer2006-11-121-25/+2
* converted imports to absoluteMike Bayer2006-10-261-4/+4
* - added auto_setinputsizes=False to oracle dialect. if true, all executions ...Mike Bayer2006-10-031-2/+2
* - removed "extension()" MapperOptionMike Bayer2006-10-031-0/+23
* moved "c.name" to "c.key" for processing defaults since bind params use colum...Mike Bayer2006-09-121-6/+6
* - cleanup on connection methods + documentation. custom DBAPIMike Bayer2006-08-251-1/+4
* [ticket:280] statement execution supports using the same BindParamMike Bayer2006-08-181-2/+2
* moved rollback catch to mysql module...Mike Bayer2006-08-101-4/+1