summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine
Commit message (Expand)AuthorAgeFilesLines
...
* - inline some code and turn some instance-level defaults into class levelMike Bayer2010-01-292-36/+53
* - the "autocommit" flag on select() and text() as wellMike Bayer2010-01-281-11/+13
* - union(), intersect(), except() and other "compound" typesMike Bayer2010-01-251-2/+3
* - Connection has execution_options(), generative methodMike Bayer2010-01-242-9/+10
* - move "should_autocommit" to a deferred method. connection wont call it if...Mike Bayer2010-01-242-10/+18
* - oracle + firebird: "case sensitivity" feature will detect an all-lowercaseMike Bayer2010-01-241-1/+3
* - the "threadlocal" engine has been rewritten and simplifiedMike Bayer2010-01-242-175/+60
* clarify intentMike Bayer2010-01-241-1/+1
* fix ResultProxy for SQLite truncated namesGaƫtan de Menten2010-01-201-1/+1
* moved the metadata step of ResultProxy into a ResultMetaData object. this al...Mike Bayer2010-01-201-175/+147
* - added native INTERVAL type to the dialect. This supportsMike Bayer2010-01-181-3/+4
* statement_options -> execution_optionsMike Bayer2010-01-171-2/+2
* doc updates partially from [ticket:1651]Mike Bayer2010-01-171-7/+19
* - added "statement_options()" to Query, to so options can beMike Bayer2010-01-161-1/+3
* - ConnectionProxy now has wrapper methods for all transactionMike Bayer2010-01-161-0/+30
* happy new yearMike Bayer2010-01-074-4/+4
* - have inspector properly return default_schema_name [ticket:1626]Mike Bayer2010-01-031-1/+1
* - added _with_options() to Connection. not publicizing this yet.Mike Bayer2009-12-181-3/+21
* - The version_id_col feature on mapper() will raise a warning whenMike Bayer2009-12-181-1/+5
* add a warning for unported dialects. considered a full blown NotImplemented...Mike Bayer2009-12-061-0/+5
* - reworked the DDL generation of ENUM and similar to be more platform agnostic.Mike Bayer2009-12-062-0/+24
* - fixed the import for entrypoint-driven dialects toMike Bayer2009-12-051-7/+24
* - pg8000 + postgresql dialects now check for float/numeric returnMike Bayer2009-11-151-2/+1
* scan for autocommit based on text() specific flag, saves isinstance() call on...Mike Bayer2009-11-101-2/+2
* - Fixed bug in two-phase transaction whereby commit() methodMike Bayer2009-11-041-2/+1
* fix MySQL initialize to use defaultdialect firstMike Bayer2009-11-031-4/+1
* - dialect.get_default_schema_name(connection) is nowMike Bayer2009-11-032-11/+32
* - The psycopg2 dialect now uses psycopg2's "unicode extension"Mike Bayer2009-10-262-9/+27
* - ResultProxy internals have been overhauled to greatly reduceMike Bayer2009-10-241-118/+149
* Removed references to sequence in MSSQLMichael Trier2009-10-221-1/+1
* - Corrected the "has_sequence" query to take current schema,Mike Bayer2009-10-211-2/+2
* - initial MySQL Connector/Python driverMike Bayer2009-10-182-2/+8
* - an executemany() now requires that all bound parameterMike Bayer2009-10-151-4/+15
* - DefaultRunner and subclasses have been removed. The jobMike Bayer2009-10-153-86/+56
* - RowProxy objects are now pickleable, i.e. the object returnedMike Bayer2009-10-111-5/+60
* - the setuptools entrypoint for external dialects is nowMike Bayer2009-10-101-1/+1
* - boolean, int, and float arguments count as "cache key" values for inspector...Mike Bayer2009-10-011-3/+10
* - distill contextual parameters for the purpose of default functions into con...Mike Bayer2009-09-031-7/+5
* - Inserting NULL into a primary key + foreign key columnMike Bayer2009-08-311-1/+1
* use *args with log.debug()/log.info(), [ticket:1520]Mike Bayer2009-08-261-4/+4
* fix up oracle tests, returning is on by defaultMike Bayer2009-08-081-4/+1
* merge 0.6 series to trunk.Mike Bayer2009-08-068-343/+1278
* changed reference to PostgreSQL in docs.rel_0_5_5Mike Bayer2009-07-131-1/+1
* removed needless "thread" imports from utilMike Bayer2009-05-301-1/+1
* - Back-ported the "compiler" extension from SQLA 0.6. Thisrel_0_5_4Mike Bayer2009-05-171-0/+1
* happy new yearMike Bayer2009-01-123-3/+3
* - sqlalchemy.sql.expression.Function is now a publicMike Bayer2009-01-021-1/+1
* Cleanup of r5556. Makes the description_encoding less public since this is aMichael Trier2009-01-021-2/+2
* Added a new description_encoding attribute on the dialect.Michael Trier2008-12-302-3/+13
* - RowProxy objects can be used in place of dictionary argumentsMike Bayer2008-12-281-3/+3