summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql
Commit message (Expand)AuthorAgeFilesLines
* - A change to the solution for [ticket:1579] - an end-userMike Bayer2010-02-161-16/+27
* tighten up conditionals a bit. this method is still doing too much, i.e. the...Mike Bayer2010-02-161-42/+51
* - Made sqlalchemy.sql.expressions.Executable part of publicMike Bayer2010-02-121-22/+32
* - The type/expression system now does a more complete jobMike Bayer2010-02-112-131/+43
* add sql_compiler property to all Compiled subclasses for convenienceMike Bayer2010-02-071-0/+4
* dont reference self.statement during compilationMike Bayer2010-02-071-1/+1
* - FunctionElement subclasses are now directly executable theMike Bayer2010-02-071-3/+4
* - Added math negation operator support, -x.Mike Bayer2010-02-053-1/+9
* fix the kwargs scoping. mysteriously was affecting pool gcingMike Bayer2010-01-291-4/+5
* - inline some code and turn some instance-level defaults into class levelMike Bayer2010-01-291-3/+7
* - the "autocommit" flag on select() and text() as wellMike Bayer2010-01-281-19/+44
* against is optionalMike Bayer2010-01-281-1/+1
* - allow exists(s.as_scalar()) to workMike Bayer2010-01-281-1/+1
* add an informative error msg for non-collection passed to select()Mike Bayer2010-01-281-2/+8
* - Added a tuple_() construct, allows sets of expressionsMike Bayer2010-01-253-12/+40
* - union(), intersect(), except() and other "compound" typesMike Bayer2010-01-251-5/+1
* - Connection has execution_options(), generative methodMike Bayer2010-01-241-5/+7
* not ready to put execution_options in the text()/select() constructors yetMike Bayer2010-01-241-9/+3
* - types.Binary is renamed to types.LargeBinary, it onlyMike Bayer2010-01-231-1/+7
* fixed the illegal_initial_chars collection + unit test, [ticket:1659]Mike Bayer2010-01-211-1/+1
* statement_options -> execution_optionsMike Bayer2010-01-171-30/+32
* - added "statement_options()" to Query, to so options can beMike Bayer2010-01-161-22/+43
* happy new yearMike Bayer2010-01-072-2/+2
* - Fixed a column arithmetic bug that affected columnMike Bayer2010-01-031-1/+2
* fixed DDL quoting with literal strings that have ' [ticket:1640]Mike Bayer2010-01-031-1/+8
* - clarify ForeignKey docs, copy operationMike Bayer2010-01-021-186/+187
* - calling expr.in_([]), i.e. with an empty list, emits a warningMike Bayer2009-12-291-1/+9
* merge r6591, r6592 from 0.5 branch for PGInterval etc. /extractMike Bayer2009-12-291-0/+3
* - 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