summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/databases/sqlite.py
Commit message (Expand)AuthorAgeFilesLines
* - Fixed SQLite reflection methods so that non-presentrel_0_4Mike Bayer2009-03-171-5/+10
* - String's (and Unicode's, UnicodeText's, etc.) convert_unicoderel_0_4_8Mike Bayer2008-10-121-3/+31
* - Supplied a custom strftime() function whichMike Bayer2008-09-191-3/+3
* - add SLFloat type, which matches the SQLite REALMike Bayer2008-07-021-1/+14
* - applied the "reverse" of r4877 from trunk; correct microsecond behavior is ...Mike Bayer2008-06-271-3/+10
* back-merged current 0.4 trunk into rel_0_4 branch, which will become the 0.4 ...Mike Bayer2008-05-091-123/+232
* - changed 'desired_columns' argument to 'include_columns'Mike Bayer2007-07-261-2/+2
* - ANSICompiler now uses its own traversal when compiling, returning a composedMike Bayer2007-07-261-2/+2
* "You can also specify a list or set of column names to autoload, if you only ...Jonathan Ellis2007-07-261-1/+3
* Remove unused imports, typo and light formatting tweaks.Jason Kirtland2007-07-191-2/+2
* Better quoting of identifiers when manipulating schemas.Jason Kirtland2007-07-191-1/+2
* - all "type" keyword arguments, such as those to bindparam(), column(),Mike Bayer2007-07-191-6/+0
* Properly escape table names when reflecting for mssql and sqlite [ticket:653]Paul Johnston2007-07-171-3/+3
* - merged trunk r2880-r2901 (slightly manually for 2900-2901)Mike Bayer2007-07-141-1/+1
* - added NullType to export listMike Bayer2007-07-031-0/+1
* - standardized the behavior for table reflection where types can't be located;Mike Bayer2007-07-021-1/+6
* - merge of generative_sql branchMike Bayer2007-06-241-5/+5
* - merged trunk r2730-r2755Mike Bayer2007-06-201-6/+15
* - merged last_inserted_ids() fix from trunk [changeset:2743]Mike Bayer2007-06-171-2/+2
* - result sets from CRUD operations close their underlying cursor immediately.Mike Bayer2007-06-141-0/+3
* merge 2684-2686 from trunkJonathan Ellis2007-06-121-3/+3
* - result.last_inserted_ids() should return a list that is identicallyMike Bayer2007-06-111-1/+1
* - converted logger.warn() to warnings.warn()Mike Bayer2007-04-211-2/+9
* - Promoted mysql's dburl query string helper to util + fixedJason Kirtland2007-04-191-1/+10
* - the dialects within sqlalchemy.databases become a setuptoolsMike Bayer2007-04-171-13/+15
* - got unicode schemas to work with postgresMike Bayer2007-04-151-0/+3
* - some cleanup of reflection unit testsMike Bayer2007-04-041-3/+0
* - merged the "execcontext" branch, refactors engine/dialect codepathsMike Bayer2007-04-021-33/+27
* migrated (most) docstrings to pep-257 format, docstring generator using strai...Mike Bayer2007-02-251-16/+41
* - added "schema" argument to all has_table() calls, only supported so far by PGMike Bayer2007-02-041-1/+1
* oracle can conditionally decide if it wants to say "use rowid" in a select st...Mike Bayer2007-01-241-1/+1
* tweak to support reflecting eqlite columns that didnt specify a typeMike Bayer2007-01-061-2/+6
* copyright updateMike Bayer2007-01-051-1/+1
* - support for None as precision/length in numeric types for postgres, sqlite,...Mike Bayer2006-12-091-1/+4
* removed useless lineMike Bayer2006-12-031-1/+0
* further fixes to sqlite booleans, weren't working as defaultsMike Bayer2006-10-291-0/+2
* fix for sqlite refection of names with weird quotes around them in the DDL wh...Mike Bayer2006-10-191-1/+4
* - ForeignKey(Constraint) supports "use_alter=True", to create/drop a foreign keyMike Bayer2006-10-151-0/+9
* - a fair amount of cleanup to the schema package, removal of ambiguousMike Bayer2006-10-141-4/+3
* some cleanup submitted by Lele GalifaxMike Bayer2006-10-131-3/+0
* - fixes to Date/Time (SLDate/SLTime) types; works as good as postgresMike Bayer2006-10-121-4/+5
* - added test suite to test improved from_obj/join behavior with Query/eagerlo...Mike Bayer2006-09-281-0/+2
* sqlite doesnt support FOR UPDATEMike Bayer2006-09-111-0/+4
* - import of py2.5s sqlite3 [ticket:293]Mike Bayer2006-09-041-4/+7
* sqlite dialects can be created without pysqlite installedMike Bayer2006-08-211-3/+1
* - postgres reflection moved to use pg_schema tables, can be overriddenMike Bayer2006-08-211-3/+3
* some fixes to sqlite datetime organization, was improperly reflectingMike Bayer2006-08-121-5/+7
* quoting facilities set up so that database-specific quoting can beMike Bayer2006-08-121-3/+9
* oops: committed the rest of [changeset:1759], removed print in sqlite + rest...Mike Bayer2006-08-031-1/+1
* - better check for ambiguous join conditions in sql.Join; propigates to aMike Bayer2006-08-031-3/+17