summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/ansisql.py
Commit message (Expand)AuthorAgeFilesLines
* - added literal_column() to specify a column clause that should not undergo a...Mike Bayer2007-02-041-3/+1
* OK nevermind that last commit, rolling the quoting fix backMike Bayer2007-02-041-14/+15
* - more quoting fixes for [ticket:450]...quoting more aggressive (but still sk...Mike Bayer2007-02-041-15/+14
* fixes to quoting on "fake" column when used off its tableMike Bayer2007-01-291-1/+1
* oracle can conditionally decide if it wants to say "use rowid" in a select st...Mike Bayer2007-01-241-1/+1
* - added support for column "key" attribute to be useable in row[<key>]/row.<key>Mike Bayer2007-01-231-0/+4
* copyright updateMike Bayer2007-01-051-1/+1
* - order of constraint creation puts primary key first before all other constr...Mike Bayer2007-01-031-2/+6
* - global "insure"->"ensure" change. in US english "insure" is actuallyMike Bayer2007-01-011-1/+1
* - made kwargs parsing to Table strict; removed various obsoluete "redefine=Tr...Mike Bayer2006-11-261-40/+81
* - cleanup on some instance vars in Select (is_scalar, is_subquery, _froms is ...Mike Bayer2006-11-251-2/+2
* converted imports to absoluteMike Bayer2006-10-261-1/+1
* 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