summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/dialects/sqlite
Commit message (Expand)AuthorAgeFilesLines
...
* - SQLite dialect no longer strips quotesMike Bayer2011-07-281-4/+6
* - Failures on connect which raise dbapi.ErrorMike Bayer2011-07-011-1/+2
* - document that pysqlite does not share temporary tablesMike Bayer2011-06-291-0/+29
* sqlite :memory: works across threads now hooray !Mike Bayer2011-06-201-24/+42
* - Accept None from SQLite cursor.fetchone() whenMike Bayer2011-06-041-1/+11
* random cleanupMike Bayer2011-05-041-1/+2
* - Fixed bug where reflection of foreign keyMike Bayer2011-04-101-0/+4
* - REAL has been added to the core types. SupportedMike Bayer2011-04-052-5/+4
* - Documented SQLite DATE/TIME/DATETIME types.Mike Bayer2011-03-271-1/+101
* - some doc reorgMike Bayer2011-03-171-1/+1
* - The path given as the location of a sqlite database is nowMike Bayer2011-02-101-0/+3
* - add connection and cursor to is_disconnect(). We aren't using it yet,Mike Bayer2011-02-091-1/+1
* - execution_options() on Connection acceptsMike Bayer2011-01-161-1/+1
* - factor consistent set_isolation_level(), get_isolation_level()Mike Bayer2011-01-161-13/+29
* Regarding reflection for this case, reflection of an int PK colMike Bayer2011-01-151-0/+1
* - fix reflection of unknown types with arguments, NullType() accepts no argum...Mike Bayer2011-01-121-4/+4
* - A TypeDecorator of Integer can be used with a primary keyMike Bayer2011-01-111-2/+2
* - whitespace removal bonanzaMike Bayer2011-01-022-30/+30
* - clean up copyright, update for 2011, stamp every file withMike Bayer2011-01-023-2/+15
* Ridding the world of a few wasteful imports.Michael Trier2010-12-192-7/+4
* - merge tipMike Bayer2010-12-191-1/+1
|\
| * this innocuous change allows sqlite to work with pypy. sadly, pypy is twice ...Mike Bayer2010-12-171-2/+2
* | - some good inlinings to the whole cascade_iterator() thing.Mike Bayer2010-12-181-1/+1
* | - system to cache the bind/result processors in a dialect-wide registry.Mike Bayer2010-12-131-1/+2
|/
* - ResultProxy and friends always reference the DBAPI connection at the same timeMike Bayer2010-12-051-3/+17
* - NullPool is now used by default for SQLite file-Mike Bayer2010-11-281-21/+23
* merge tipMike Bayer2010-11-142-4/+19
|\
| * - On the same theme, the REFERENCES clause in a CREATE TABLEMike Bayer2010-11-121-1/+11
| * - The REFERENCES clause in a CREATE TABLE that includesMike Bayer2010-11-121-0/+4
| * doc editsMike Bayer2010-09-231-3/+4
* | - move LIMIT/OFFSET rendering to be as bind parameters, for all backendsMike Bayer2010-08-291-4/+4
|/
* - Calling fetchone() or similar on a result thatMike Bayer2010-08-031-1/+1
* - Changed the scheme used to generate truncatedMike Bayer2010-07-211-1/+1
* - Fixed concatenation of constraints when "PRIMARY KEY"Mike Bayer2010-05-271-1/+1
* place docs for DBAPI-agnostic transaction_isolation setting for sqlite, pg [t...Mike Bayer2010-04-301-1/+9
* clean up sqlite version detection stuffMike Bayer2010-03-262-7/+12
* removed all dialect table_names() methods and standardizedMike Bayer2010-03-191-6/+3
* - moved most Decimal bind/result handling into types.py, out of sqlite, mysql...Mike Bayer2010-03-181-15/+0
* - added pyodbc for sybase driver.Mike Bayer2010-03-171-2/+2
* - The except_() method now renders as MINUS on Oracle,Mike Bayer2010-03-161-2/+3
* - The visit_pool() method of Dialect is removed, and replaced withMike Bayer2010-03-151-14/+14
* - name all the "sub" dialect components <DB><component>_<dialectname>, [ticke...Mike Bayer2010-03-141-2/+2
* typoMike Bayer2010-03-051-1/+1
* - Added an optional C extension to speed up the sql layer byGaƫtan de Menten2010-02-131-24/+20
* - Added "native_datetime=True" flag to create_engine().Mike Bayer2010-02-112-9/+79
* - types.Binary is renamed to types.LargeBinary, it onlyMike Bayer2010-01-231-1/+1
* happy new yearMike Bayer2010-01-071-1/+1
* and the docs...Mike Bayer2009-12-181-3/+6
* - Column() supports a keyword argument "sqlite_autoincrement", whichMike Bayer2009-12-181-0/+42
* - sqlite dialect properly generates CREATE INDEX for a tableMike Bayer2009-12-071-2/+26