| Commit message (Expand) | Author | Age | Files | Lines |
| * | 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 |
| * | got MS-SQL support largely working, including reflection, basic types, fair a... | Mike Bayer | 2006-07-01 | 1 | -2/+2 |
| * | cast converted into its own ClauseElement so that it can have an explicit com...rel_0_2_3 | Mike Bayer | 2006-06-17 | 1 | -7/+18 |
| * | adjustment to better allow textual from clauses | Mike Bayer | 2006-06-12 | 1 | -2/+2 |
| * | separated standalone between(), column.between(), put literal checking for bo... | Mike Bayer | 2006-06-08 | 1 | -5/+16 |
| * | fixed typing for between() operator, [ticket:202] | Mike Bayer | 2006-06-08 | 1 | -3/+8 |
| * | HashSet is gone, uses set() for most sets in py2.4 or sets.Set. | Mike Bayer | 2006-06-05 | 1 | -2/+2 |
| * | "count" label changed to "rowcount", and default "count" argument is first pk... | Mike Bayer | 2006-06-01 | 1 | -2/+10 |
| * | merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1 | Mike Bayer | 2006-05-25 | 1 | -154/+212 |
| * | added explicit check for "==null()" to produce IS NULL, documnted "==None", "... | Mike Bayer | 2006-05-24 | 1 | -9/+8 |
| * | rick morrison's CASE statement + unit test | Mike Bayer | 2006-05-15 | 1 | -18/+49 |
| * | added != support for None -> foo IS NOT NULL | Mike Bayer | 2006-05-12 | 1 | -2/+6 |
| * | added __mod__ typerel_0_1_7 | Mike Bayer | 2006-05-05 | 1 | -0/+2 |
| * | fix to subquery parens | Mike Bayer | 2006-04-28 | 1 | -3/+2 |
| * | fixed up expunge() and the continuing circular refs in attributes, added a un... | Mike Bayer | 2006-04-19 | 1 | -1/+4 |
| * | added _get_from_obj to TypeClause | Mike Bayer | 2006-04-17 | 1 | -1/+2 |
| * | had to take out the "treeification" of the dependency sort as it doenst reall... | Mike Bayer | 2006-04-14 | 1 | -1/+2 |
| * | a little spring cleaning for the util package, etc | Mike Bayer | 2006-04-07 | 1 | -3/+2 |
| * | split up Session into Session/LegacySession, added some new constructor args | Mike Bayer | 2006-04-06 | 1 | -28/+38 |
| * | moves the binding of a TypeEngine object from "schema/statement creation" tim... | Mike Bayer | 2006-04-06 | 1 | -28/+22 |
| * | factored oid column into a consistent late-bound pattern, fixing [ticket:146] | Mike Bayer | 2006-04-04 | 1 | -20/+33 |
| * | Added cast() to allow use of cast(tbl.c.col as Numeric(4,2)) in select and wh... | Robert Leftwich | 2006-04-04 | 1 | -1/+20 |