summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql.py
Commit message (Expand)AuthorAgeFilesLines
* fix CASE statement when else_ is zeroRick Morrison2007-03-151-1/+1
* some formattingMike Bayer2007-03-131-5/+23
* - for hackers, refactored the "visitor" system of ClauseElement andMike Bayer2007-03-111-96/+206
* - added concept of 'require_embedded' to corresponding_column.Mike Bayer2007-03-051-8/+28
* - bindparam() names are now repeatable! specify twoMike Bayer2007-03-031-16/+33
* - added "fold_equivalents" argument to Join.select(), which removesMike Bayer2007-03-021-3/+50
* - use_labels flag on select() wont auto-create labels for literal textMike Bayer2007-03-011-3/+18
* migrated (most) docstrings to pep-257 format, docstring generator using strai...Mike Bayer2007-02-251-376/+820
* - correlated subqueries work inside of ORDER BY, GROUP BYMike Bayer2007-02-241-4/+13
* - exists() becomes useable as a standalone selectable, not just in aMike Bayer2007-02-231-4/+11
* - implemented foreign_keys argument on relation() [ticket:385]Mike Bayer2007-02-101-1/+1
* - added literal_column() to specify a column clause that should not undergo a...Mike Bayer2007-02-041-5/+10
* OK nevermind that last commit, rolling the quoting fix backMike Bayer2007-02-041-1/+1
* - more quoting fixes for [ticket:450]...quoting more aggressive (but still sk...Mike Bayer2007-02-041-5/+6
* - added a "supports_execution()" method to ClauseElement, so that individualMike Bayer2007-02-021-3/+15
* removed various print statementsMike Bayer2007-01-281-1/+0
* merged the polymorphic relationship refactoring branch in. i want to go furt...Mike Bayer2007-01-281-1/+7
* - calling corresponding_column with keys_ok matches columns on name, not key,...Mike Bayer2007-01-241-2/+2
* - tightened down conditions used to locate "relation direction", associatingMike Bayer2007-01-201-1/+9
* - trailing underscores are trimmed from func.<xxx> calls, such as func.if_()Mike Bayer2007-01-191-0/+2
* - changed "BooleanExpression" to subclass from "BinaryExpression", so that bo...Mike Bayer2007-01-191-9/+8
* - another fix to subquery correlation so that a subquery which has only one FROMMike Bayer2007-01-191-1/+7
* - added optional constructor to sql.ColumnCollectionMike Bayer2007-01-151-0/+3
* - the "op()" function is now treated as an "operation", rather than a "compar...Mike Bayer2007-01-081-1/+1
* copyright updateMike Bayer2007-01-051-1/+1
* - fix to correlation of subqueries when the column list of the select statementMike Bayer2006-12-281-3/+6
* reversing last commitRick Morrison2006-12-181-1/+1
* added missing ref to between in sql.py __all__Rick Morrison2006-12-171-1/+1
* - string-based FROM clauses fixed, i.e. select(..., from_obj=["sometext"])Mike Bayer2006-12-121-1/+1
* - sending a selectable to an IN no longer creates a "union" out of multipleMike Bayer2006-11-291-4/+7
* added label() function to Select class, useable only with selectMike Bayer2006-11-271-1/+14
* - made kwargs parsing to Table strict; removed various obsoluete "redefine=Tr...Mike Bayer2006-11-261-50/+30
* some clenaup on the "correlation" API on the _Select classMike Bayer2006-11-251-13/+17
* - cleanup on some instance vars in Select (is_scalar, is_subquery, _froms is ...Mike Bayer2006-11-251-36/+52
* figured out how a Select can be in its own _froms list, changed assertion to ...Mike Bayer2006-10-311-2/+4
* converted imports to absoluteMike Bayer2006-10-261-1/+0
* updates to oracleMike Bayer2006-10-221-2/+2
* renamed Column/ColumnClause "hidden" to "_is_oid"Mike Bayer2006-10-221-5/+5
* some docstring stuffMike Bayer2006-10-201-1/+1
* ok, TableClause should be publicMike Bayer2006-10-171-9/+9
* reorganizing classnames a bit, flagging "private" classes in the sql package,Mike Bayer2006-10-171-130/+142
* - a fair amount of cleanup to the schema package, removal of ambiguousMike Bayer2006-10-141-17/+18
* - the "foreign_key" attribute on Column and ColumnElement in generalMike Bayer2006-10-081-5/+11
* - Function objects know what to do in a FROM clause now. theirMike Bayer2006-10-031-2/+13
* - added test suite to test improved from_obj/join behavior with Query/eagerlo...Mike Bayer2006-09-281-5/+2
* decruftifyMike Bayer2006-09-281-17/+28
* - pool will auto-close open cursors, or can be configured to raise an error i...Mike Bayer2006-09-281-70/+49
* - BooleanExpression includes new "negate" argument to specifyMike Bayer2006-09-211-12/+22
* added extract() function to sql dialectMike Bayer2006-09-141-2/+6
* - unicode fix for startswith()/endswith() [ticket:296]Mike Bayer2006-09-051-2/+2