| Commit message (Expand) | Author | Age | Files | Lines |
* | - added literal_column() to specify a column clause that should not undergo a... | Mike Bayer | 2007-02-04 | 1 | -5/+10 |
* | OK nevermind that last commit, rolling the quoting fix back | Mike Bayer | 2007-02-04 | 1 | -1/+1 |
* | - more quoting fixes for [ticket:450]...quoting more aggressive (but still sk... | Mike Bayer | 2007-02-04 | 1 | -5/+6 |
* | - added a "supports_execution()" method to ClauseElement, so that individual | Mike Bayer | 2007-02-02 | 1 | -3/+15 |
* | removed various print statements | Mike Bayer | 2007-01-28 | 1 | -1/+0 |
* | merged the polymorphic relationship refactoring branch in. i want to go furt... | Mike Bayer | 2007-01-28 | 1 | -1/+7 |
* | - calling corresponding_column with keys_ok matches columns on name, not key,... | Mike Bayer | 2007-01-24 | 1 | -2/+2 |
* | - tightened down conditions used to locate "relation direction", associating | Mike Bayer | 2007-01-20 | 1 | -1/+9 |
* | - trailing underscores are trimmed from func.<xxx> calls, such as func.if_() | Mike Bayer | 2007-01-19 | 1 | -0/+2 |
* | - changed "BooleanExpression" to subclass from "BinaryExpression", so that bo... | Mike Bayer | 2007-01-19 | 1 | -9/+8 |
* | - another fix to subquery correlation so that a subquery which has only one FROM | Mike Bayer | 2007-01-19 | 1 | -1/+7 |
* | - added optional constructor to sql.ColumnCollection | Mike Bayer | 2007-01-15 | 1 | -0/+3 |
* | - the "op()" function is now treated as an "operation", rather than a "compar... | Mike Bayer | 2007-01-08 | 1 | -1/+1 |
* | copyright update | Mike Bayer | 2007-01-05 | 1 | -1/+1 |
* | - fix to correlation of subqueries when the column list of the select statement | Mike Bayer | 2006-12-28 | 1 | -3/+6 |
* | reversing last commit | Rick Morrison | 2006-12-18 | 1 | -1/+1 |
* | added missing ref to between in sql.py __all__ | Rick Morrison | 2006-12-17 | 1 | -1/+1 |
* | - string-based FROM clauses fixed, i.e. select(..., from_obj=["sometext"]) | Mike Bayer | 2006-12-12 | 1 | -1/+1 |
* | - sending a selectable to an IN no longer creates a "union" out of multiple | Mike Bayer | 2006-11-29 | 1 | -4/+7 |
* | added label() function to Select class, useable only with select | Mike Bayer | 2006-11-27 | 1 | -1/+14 |
* | - made kwargs parsing to Table strict; removed various obsoluete "redefine=Tr... | Mike Bayer | 2006-11-26 | 1 | -50/+30 |
* | some clenaup on the "correlation" API on the _Select class | Mike Bayer | 2006-11-25 | 1 | -13/+17 |
* | - cleanup on some instance vars in Select (is_scalar, is_subquery, _froms is ... | Mike Bayer | 2006-11-25 | 1 | -36/+52 |
* | figured out how a Select can be in its own _froms list, changed assertion to ... | Mike Bayer | 2006-10-31 | 1 | -2/+4 |
* | converted imports to absolute | Mike Bayer | 2006-10-26 | 1 | -1/+0 |
* | updates to oracle | Mike Bayer | 2006-10-22 | 1 | -2/+2 |
* | renamed Column/ColumnClause "hidden" to "_is_oid" | Mike Bayer | 2006-10-22 | 1 | -5/+5 |
* | some docstring stuff | Mike Bayer | 2006-10-20 | 1 | -1/+1 |
* | ok, TableClause should be public | Mike Bayer | 2006-10-17 | 1 | -9/+9 |
* | reorganizing classnames a bit, flagging "private" classes in the sql package, | Mike Bayer | 2006-10-17 | 1 | -130/+142 |
* | - a fair amount of cleanup to the schema package, removal of ambiguous | Mike Bayer | 2006-10-14 | 1 | -17/+18 |
* | - the "foreign_key" attribute on Column and ColumnElement in general | Mike Bayer | 2006-10-08 | 1 | -5/+11 |
* | - Function objects know what to do in a FROM clause now. their | Mike Bayer | 2006-10-03 | 1 | -2/+13 |
* | - added test suite to test improved from_obj/join behavior with Query/eagerlo... | Mike Bayer | 2006-09-28 | 1 | -5/+2 |
* | decruftify | Mike Bayer | 2006-09-28 | 1 | -17/+28 |
* | - pool will auto-close open cursors, or can be configured to raise an error i... | Mike Bayer | 2006-09-28 | 1 | -70/+49 |
* | - BooleanExpression includes new "negate" argument to specify | Mike Bayer | 2006-09-21 | 1 | -12/+22 |
* | added extract() function to sql dialect | Mike Bayer | 2006-09-14 | 1 | -2/+6 |
* | - unicode fix for startswith()/endswith() [ticket:296] | Mike Bayer | 2006-09-05 | 1 | -2/+2 |
* | simplification to quoting to just cache strings per-dialect, added quoting fo... | Mike Bayer | 2006-09-04 | 1 | -1/+3 |
* | added limit/offset to union queries | Mike Bayer | 2006-08-26 | 1 | -0/+2 |
* | [ticket:280] statement execution supports using the same BindParam | Mike Bayer | 2006-08-18 | 1 | -5/+12 |
* | quoting facilities set up so that database-specific quoting can be | Mike Bayer | 2006-08-12 | 1 | -1/+3 |
* | removed superfluous **params | Mike Bayer | 2006-08-11 | 1 | -2/+2 |
* | added "nowait" flag to Select() [ticket:270] | Mike Bayer | 2006-08-11 | 1 | -1/+3 |
* | oops: committed the rest of [changeset:1759], removed print in sqlite + rest... | Mike Bayer | 2006-08-03 | 1 | -2/+2 |
* | - better check for ambiguous join conditions in sql.Join; propigates to a | Mike Bayer | 2006-08-03 | 1 | -0/+5 |
* | _selectable interface; allows sqlsoup to pass its classes to Join and have th... | Jonathan Ellis | 2006-07-21 | 1 | -18/+16 |
* | fix to typing in clause construction which specifically helps | Mike Bayer | 2006-07-19 | 1 | -3/+10 |
* | overhaul to schema, addition of ForeignKeyConstraint/ | Mike Bayer | 2006-07-14 | 1 | -8/+0 |