summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/ansisql.py
Commit message (Expand)AuthorAgeFilesLines
...
* reorganizing classnames a bit, flagging "private" classes in the sql package,Mike Bayer2006-10-171-4/+4
* - ForeignKey(Constraint) supports "use_alter=True", to create/drop a foreign keyMike Bayer2006-10-151-11/+47
* - a fair amount of cleanup to the schema package, removal of ambiguousMike Bayer2006-10-141-25/+54
* some cleanup submitted by Lele GalifaxMike Bayer2006-10-131-1/+1
* - Function objects know what to do in a FROM clause now. theirMike Bayer2006-10-031-0/+2
* decruftifyMike Bayer2006-09-281-3/+3
* - changed "for_update" parameter to accept False/True/"nowait"Mike Bayer2006-09-101-6/+8
* further fixes to case sensitive logicMike Bayer2006-09-041-4/+5
* simplification to quoting to just cache strings per-dialect, added quoting fo...Mike Bayer2006-09-041-74/+52
* since casing is figured out quasi-automatically when creating table/column/etc,Mike Bayer2006-08-311-0/+3
* quoting more or less working with oracleMike Bayer2006-08-311-1/+4
* some tweaks to oracle casing...Mike Bayer2006-08-311-2/+2
* - added case_sensitive argument to MetaData, Table, Column, determinesMike Bayer2006-08-311-6/+24
* [ticket:266] constraint name in PrimaryKeyConstraintMike Bayer2006-08-261-3/+5
* added limit/offset to union queriesMike Bayer2006-08-261-3/+6
* working on sequence quoting support....Mike Bayer2006-08-211-2/+17
* refactoring of ANSIIdentifierPreparer to be one instance per-dialect, simplif...Mike Bayer2006-08-211-46/+25
* - postgres reflection moved to use pg_schema tables, can be overriddenMike Bayer2006-08-211-16/+49
* [ticket:280] statement execution supports using the same BindParamMike Bayer2006-08-181-24/+5
* added "requires_quotes" step, subclasses of ANSIIdentifierPreparer can overrideMike Bayer2006-08-161-3/+7
* refactored ANSIIdentifierPreparer to be visitor based; minimizes escaping ope...Mike Bayer2006-08-121-28/+54
* turned off default case-folding rules as they wreak havoc with the current un...Mike Bayer2006-08-121-5/+5
* quoting facilities set up so that database-specific quoting can beMike Bayer2006-08-121-19/+90
* added "nowait" flag to Select() [ticket:270]Mike Bayer2006-08-111-0/+3
* _selectable interface; allows sqlsoup to pass its classes to Join and have th...Jonathan Ellis2006-07-211-19/+22
* added 'checkfirst' argument to table.create()/table.drop()Mike Bayer2006-07-191-0/+14
* fixed table name in REFERENCES clause to include schema if applicableMike Bayer2006-07-181-1/+1
* overhaul to schema, addition of ForeignKeyConstraint/Mike Bayer2006-07-141-8/+26
* single space for MySQL appeasementMike Bayer2006-06-191-1/+4
* cast converted into its own ClauseElement so that it can have an explicit com...rel_0_2_3Mike Bayer2006-06-171-1/+7
* fixed bug where Column with redefined "key" property wasnt gettingMike Bayer2006-06-141-1/+1
* HashSet is gone, uses set() for most sets in py2.4 or sets.Set.Mike Bayer2006-06-051-2/+2
* merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1Mike Bayer2006-05-251-47/+53
* rick morrison's CASE statement + unit testMike Bayer2006-05-151-1/+7
* fixed HAVING/ORDER BY order, 0.1.7 prepMike Bayer2006-05-051-4/+4
* fix for [ticket:169], moves the creation of "default" parameters more accuratelyMike Bayer2006-04-281-16/+21
* localtime/localtimestamp dont seem to need the underscore for postgres/mysql,...Mike Bayer2006-04-261-2/+2
* moves the binding of a TypeEngine object from "schema/statement creation" tim...Mike Bayer2006-04-061-1/+4
* made order_by/group_by construction a little more simplisitcMike Bayer2006-04-031-6/+13
* added for_update flag to Select/CompoundSelectMike Bayer2006-03-311-0/+3
* removed all "tablename + '_' + columname" code and replaced with column._labe...Mike Bayer2006-03-251-1/+4
* got clause elements inside INSERTs going...Mike Bayer2006-03-191-7/+15
* got oracle parenthesized rules for funcs back, fixed copy_container on functionMike Bayer2006-03-181-1/+4
* expanded and integrated qvx's patch for dotted function namesMike Bayer2006-03-161-2/+2
* added scalar subqueries within the column clause of another selectMike Bayer2006-03-131-1/+5
* refactor to Compiled.get_params() to return new ClauseParameters object, a mo...Mike Bayer2006-03-131-15/+7
* patch on index create syntax to fix [ticket:90] so schema name gets includedMike Bayer2006-03-061-1/+1
* added new 'polymorphic' example. still trying to understand it :) .Mike Bayer2006-03-061-2/+5
* more tweak to compoundselect parenthesizing/subquery flagMike Bayer2006-03-061-2/+2
* got column onupdate workingMike Bayer2006-03-051-7/+55