summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql
Commit message (Expand)AuthorAgeFilesLines
* - merge r6586 from 0.5 branch, for [ticket:1647]Mike Bayer2009-12-291-1/+85
* - Column() supports a keyword argument "sqlite_autoincrement", whichMike Bayer2009-12-181-1/+3
* - Fixed bug preventing alias() of an alias() from beingMike Bayer2009-12-181-1/+1
* documentation patch for [ticket:1354]Mike Bayer2009-12-091-2/+8
* - Session.execute() now locates table- andMike Bayer2009-12-081-2/+8
* - removed needless "counter" behavior with select()Mike Bayer2009-12-081-8/+0
* - multi-part schema names, i.e. with dots such asMike Bayer2009-12-081-1/+1
* - The "use get" behavior of many-to-one relations, i.e. that aMike Bayer2009-12-081-8/+3
* - reworked the DDL generation of ENUM and similar to be more platform agnostic.Mike Bayer2009-12-062-21/+31
* scan for autocommit based on text() specific flag, saves isinstance() call on...Mike Bayer2009-11-101-2/+2
* - subclassed Function off of new FunctionElement generic baseMike Bayer2009-11-101-51/+57
* - query.get() can be used with a mapping to an outer joinMike Bayer2009-11-091-0/+18
* - The "start" and "increment" attributes on Sequence nowMike Bayer2009-11-031-0/+11
* added docs to case() illusrtating usage of `literal_column()`, can't implemen...Mike Bayer2009-10-281-1/+11
* - generalized Enum to issue a CHECK constraint + VARCHAR on default platformMike Bayer2009-10-252-9/+26
* - Added new ENUM type to the Postgresql dialect, which exists as a schema-levelMike Bayer2009-10-252-33/+28
* - insert() and update() constructs can now embed bindparam()Mike Bayer2009-10-231-4/+9
* some cleanupMike Bayer2009-10-211-11/+22
* merge r6418 from 0.5, dedupe expressions on clause ident, not string valueMike Bayer2009-10-201-3/+3
* merged r6416 of 0.5 branch, fix the "numeric" paramstyle and add testsMike Bayer2009-10-201-1/+1
* deprecations per [ticket:1498]:Mike Bayer2009-10-152-26/+8
* - an executemany() now requires that all bound parameterMike Bayer2009-10-152-14/+28
* remove instanceof() in favor of memoized flags, part of [ticket:1566]Mike Bayer2009-10-141-9/+7
* - added "ddl" argument to the "on" callable of DDLElement [ticket:1538]Mike Bayer2009-10-121-3/+3
* merge from branches/clauseelement-nonzeroPhilip Jenvey2009-09-244-51/+62
* - Inserting NULL into a primary key + foreign key columnMike Bayer2009-08-311-2/+1
* - Fixed an obscure issue whereby a joined-table subclassMike Bayer2009-08-281-1/+12
* doc fixesMike Bayer2009-08-251-18/+18
* always visit returning clauses in the right order for positional paramstylePhilip Jenvey2009-08-181-8/+4
* - simplify MySQLIdentifierPreparer into standard pattern,Mike Bayer2009-08-101-3/+5
* - the Oracle dialect now features NUMBER which intendsMike Bayer2009-08-091-0/+2
* - added **kw to ClauseElement.compare(), so that we can smarten up the "use_g...Mike Bayer2009-08-081-12/+44
* clean up the way we detect MSSQL's form of RETURNINGMike Bayer2009-08-081-10/+22
* unwrapped _get_colparams a bit, dropped out an isinstance() callMike Bayer2009-08-082-22/+25
* - turned on auto-returning for oracle, some errorsMike Bayer2009-08-081-11/+11
* fix non2.4 gremlinMike Bayer2009-08-061-1/+1
* merge 0.6 series to trunk.Mike Bayer2009-08-064-546/+1016
* merged [ticket:1486] fix from 0.6Mike Bayer2009-07-282-4/+13
* - Fixed bug whereby a load/refresh of joined tableMike Bayer2009-07-251-7/+4
* - Unary expressions such as DISTINCT propagate theirMike Bayer2009-07-252-6/+5
* - Fixed a bug in extract() introduced in 0.5.4 wherebyMike Bayer2009-07-171-2/+1
* - sqlMike Bayer2009-05-292-2/+2
* - The "polymorphic discriminator" column may be part of aMike Bayer2009-05-171-1/+1
* - It is now an error to specify both columns of a binary primaryjoinMike Bayer2009-05-081-4/+4
* Added multi part schema name support. Closes #594 and #1341.Michael Trier2009-04-111-6/+14
* - Fixed bug in relation(), introduced in 0.5.3,Mike Bayer2009-04-021-0/+1
* Lots of fixes to the code examples to specify imports explicitly.Michael Trier2009-03-311-4/+8
* extract() is now dialect-sensitive and supports SQLite and others.Jason Kirtland2009-03-302-2/+44
* - Lazy loader will not use get() if the "lazy load"Mike Bayer2009-03-291-1/+1
* - An alias() of a select() will convert to a "scalar subquery"Mike Bayer2009-03-211-2/+22