summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine
Commit message (Expand)AuthorAgeFilesLines
...
* documented listeners arg on create_engine(), [ticket:1230]Mike Bayer2010-03-191-19/+23
* removed all dialect table_names() methods and standardizedMike Bayer2010-03-191-1/+1
* - pyodbc can do *some* unicode with sybase, python-sybase not at all.Mike Bayer2010-03-171-1/+1
* - added pyodbc for sybase driver.Mike Bayer2010-03-171-0/+1
* - The visit_pool() method of Dialect is removed, and replaced withMike Bayer2010-03-153-4/+55
* - initial working version of sybase, with modifications to the transactionalMike Bayer2010-03-141-1/+5
* - Added "logging_name" argument to create_engine(), Pool() constructorMike Bayer2010-03-133-4/+17
* oursql doesn't like the cursor being reused without fetch being finishedMike Bayer2010-03-121-13/+15
* - Added preliminary support for Oracle's WITH_UNICODEMike Bayer2010-03-121-1/+9
* refine that a bitMike Bayer2010-03-111-20/+15
* adding windows-appropriate levels of pain to unicode handlingMike Bayer2010-03-111-2/+2
* add a third state to converts_unicode_strings - "conditional". at the momentMike Bayer2010-03-111-2/+18
* fixed up docs for execution_options() across all three locations.Mike Bayer2010-03-091-7/+12
* - the execution sequence pulls all rowcount/last inserted IDMike Bayer2010-02-282-29/+62
* - simplify the OurSQL dialect regarding py3k, this version gives it a fairlyMike Bayer2010-02-281-15/+14
* - orm: Removed a lot of logging that nobody really cares about,Mike Bayer2010-02-281-7/+11
* Corrected docs on create_engine to link to DBEngine Logging docs. Fixes #1721.Michael Trier2010-02-281-4/+3
* working on pyodbc / mxodbcMike Bayer2010-02-271-0/+5
* - threadlocal engine wasn't properly closing the connectionMike Bayer2010-02-272-5/+11
* Changed bind parameters to be passed as a tuple. Some drivers don't like to r...Michael Trier2010-02-261-2/+2
* - The assert_unicode flag is deprecated. SQLAlchemy will raiseMike Bayer2010-02-252-7/+14
* - fix C version of rowproxy pickling so that it pickles to the same formatGaëtan de Menten2010-02-141-13/+8
* - Added an optional C extension to speed up the sql layer byGaëtan de Menten2010-02-131-157/+225
* - Restored the keys() method to ResultProxy.Mike Bayer2010-02-101-1/+8
* add sql_compiler property to all Compiled subclasses for convenienceMike Bayer2010-02-071-0/+10
* - FunctionElement subclasses are now directly executable theMike Bayer2010-02-071-1/+1
* - the "connection" argument from engine.transaction() andMike Bayer2010-01-291-29/+38
* - 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