summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql.py
Commit message (Expand)AuthorAgeFilesLines
* - 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
* simplification to quoting to just cache strings per-dialect, added quoting fo...Mike Bayer2006-09-041-1/+3
* added limit/offset to union queriesMike Bayer2006-08-261-0/+2
* [ticket:280] statement execution supports using the same BindParamMike Bayer2006-08-181-5/+12
* quoting facilities set up so that database-specific quoting can beMike Bayer2006-08-121-1/+3
* removed superfluous **paramsMike Bayer2006-08-111-2/+2
* added "nowait" flag to Select() [ticket:270]Mike Bayer2006-08-111-1/+3
* oops: committed the rest of [changeset:1759], removed print in sqlite + rest...Mike Bayer2006-08-031-2/+2
* - better check for ambiguous join conditions in sql.Join; propigates to aMike Bayer2006-08-031-0/+5
* _selectable interface; allows sqlsoup to pass its classes to Join and have th...Jonathan Ellis2006-07-211-18/+16
* fix to typing in clause construction which specifically helpsMike Bayer2006-07-191-3/+10
* overhaul to schema, addition of ForeignKeyConstraint/Mike Bayer2006-07-141-8/+0