| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | reorganizing classnames a bit, flagging "private" classes in the sql package, | Mike Bayer | 2006-10-17 | 1 | -4/+4 |
* | - ForeignKey(Constraint) supports "use_alter=True", to create/drop a foreign key | Mike Bayer | 2006-10-15 | 1 | -11/+47 |
* | - a fair amount of cleanup to the schema package, removal of ambiguous | Mike Bayer | 2006-10-14 | 1 | -25/+54 |
* | some cleanup submitted by Lele Galifax | Mike Bayer | 2006-10-13 | 1 | -1/+1 |
* | - Function objects know what to do in a FROM clause now. their | Mike Bayer | 2006-10-03 | 1 | -0/+2 |
* | decruftify | Mike Bayer | 2006-09-28 | 1 | -3/+3 |
* | - changed "for_update" parameter to accept False/True/"nowait" | Mike Bayer | 2006-09-10 | 1 | -6/+8 |
* | further fixes to case sensitive logic | Mike Bayer | 2006-09-04 | 1 | -4/+5 |
* | simplification to quoting to just cache strings per-dialect, added quoting fo... | Mike Bayer | 2006-09-04 | 1 | -74/+52 |
* | since casing is figured out quasi-automatically when creating table/column/etc, | Mike Bayer | 2006-08-31 | 1 | -0/+3 |
* | quoting more or less working with oracle | Mike Bayer | 2006-08-31 | 1 | -1/+4 |
* | some tweaks to oracle casing... | Mike Bayer | 2006-08-31 | 1 | -2/+2 |
* | - added case_sensitive argument to MetaData, Table, Column, determines | Mike Bayer | 2006-08-31 | 1 | -6/+24 |
* | [ticket:266] constraint name in PrimaryKeyConstraint | Mike Bayer | 2006-08-26 | 1 | -3/+5 |
* | added limit/offset to union queries | Mike Bayer | 2006-08-26 | 1 | -3/+6 |
* | working on sequence quoting support.... | Mike Bayer | 2006-08-21 | 1 | -2/+17 |
* | refactoring of ANSIIdentifierPreparer to be one instance per-dialect, simplif... | Mike Bayer | 2006-08-21 | 1 | -46/+25 |
* | - postgres reflection moved to use pg_schema tables, can be overridden | Mike Bayer | 2006-08-21 | 1 | -16/+49 |
* | [ticket:280] statement execution supports using the same BindParam | Mike Bayer | 2006-08-18 | 1 | -24/+5 |
* | added "requires_quotes" step, subclasses of ANSIIdentifierPreparer can override | Mike Bayer | 2006-08-16 | 1 | -3/+7 |
* | refactored ANSIIdentifierPreparer to be visitor based; minimizes escaping ope... | Mike Bayer | 2006-08-12 | 1 | -28/+54 |
* | turned off default case-folding rules as they wreak havoc with the current un... | Mike Bayer | 2006-08-12 | 1 | -5/+5 |
* | quoting facilities set up so that database-specific quoting can be | Mike Bayer | 2006-08-12 | 1 | -19/+90 |
* | added "nowait" flag to Select() [ticket:270] | Mike Bayer | 2006-08-11 | 1 | -0/+3 |
* | _selectable interface; allows sqlsoup to pass its classes to Join and have th... | Jonathan Ellis | 2006-07-21 | 1 | -19/+22 |
* | added 'checkfirst' argument to table.create()/table.drop() | Mike Bayer | 2006-07-19 | 1 | -0/+14 |
* | fixed table name in REFERENCES clause to include schema if applicable | Mike Bayer | 2006-07-18 | 1 | -1/+1 |
* | overhaul to schema, addition of ForeignKeyConstraint/ | Mike Bayer | 2006-07-14 | 1 | -8/+26 |
* | single space for MySQL appeasement | Mike Bayer | 2006-06-19 | 1 | -1/+4 |
* | cast converted into its own ClauseElement so that it can have an explicit com...rel_0_2_3 | Mike Bayer | 2006-06-17 | 1 | -1/+7 |
* | fixed bug where Column with redefined "key" property wasnt getting | Mike Bayer | 2006-06-14 | 1 | -1/+1 |
* | HashSet is gone, uses set() for most sets in py2.4 or sets.Set. | Mike Bayer | 2006-06-05 | 1 | -2/+2 |
* | merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1 | Mike Bayer | 2006-05-25 | 1 | -47/+53 |
* | rick morrison's CASE statement + unit test | Mike Bayer | 2006-05-15 | 1 | -1/+7 |
* | fixed HAVING/ORDER BY order, 0.1.7 prep | Mike Bayer | 2006-05-05 | 1 | -4/+4 |
* | fix for [ticket:169], moves the creation of "default" parameters more accurately | Mike Bayer | 2006-04-28 | 1 | -16/+21 |
* | localtime/localtimestamp dont seem to need the underscore for postgres/mysql,... | Mike Bayer | 2006-04-26 | 1 | -2/+2 |
* | moves the binding of a TypeEngine object from "schema/statement creation" tim... | Mike Bayer | 2006-04-06 | 1 | -1/+4 |
* | made order_by/group_by construction a little more simplisitc | Mike Bayer | 2006-04-03 | 1 | -6/+13 |
* | added for_update flag to Select/CompoundSelect | Mike Bayer | 2006-03-31 | 1 | -0/+3 |
* | removed all "tablename + '_' + columname" code and replaced with column._labe... | Mike Bayer | 2006-03-25 | 1 | -1/+4 |
* | got clause elements inside INSERTs going... | Mike Bayer | 2006-03-19 | 1 | -7/+15 |
* | got oracle parenthesized rules for funcs back, fixed copy_container on function | Mike Bayer | 2006-03-18 | 1 | -1/+4 |
* | expanded and integrated qvx's patch for dotted function names | Mike Bayer | 2006-03-16 | 1 | -2/+2 |
* | added scalar subqueries within the column clause of another select | Mike Bayer | 2006-03-13 | 1 | -1/+5 |
* | refactor to Compiled.get_params() to return new ClauseParameters object, a mo... | Mike Bayer | 2006-03-13 | 1 | -15/+7 |
* | patch on index create syntax to fix [ticket:90] so schema name gets included | Mike Bayer | 2006-03-06 | 1 | -1/+1 |
* | added new 'polymorphic' example. still trying to understand it :) . | Mike Bayer | 2006-03-06 | 1 | -2/+5 |
* | more tweak to compoundselect parenthesizing/subquery flag | Mike Bayer | 2006-03-06 | 1 | -2/+2 |
* | got column onupdate working | Mike Bayer | 2006-03-05 | 1 | -7/+55 |