summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/ansisql.py
Commit message (Expand)AuthorAgeFilesLines
* Promoted format_table_seq from mysql to ansisql. Formats a fully qualified t...Jason Kirtland2007-08-011-0/+14
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to maintena...Mike Bayer2007-07-271-387/+362
* Better quoting of identifiers when manipulating schemasJason Kirtland2007-07-191-18/+30
* more query methods, overhauliung docs for forwards 0.4 methodMike Bayer2007-07-151-2/+2
* - long-identifier detection fixed to use > rather than >= forMike Bayer2007-06-051-2/+2
* - parenthesis are applied to clauses via a new _Grouping construct.Mike Bayer2007-05-141-45/+35
* - fix to long name generation when using oid_column as an order byMike Bayer2007-05-071-2/+4
* more docstrings stuffMike Bayer2007-04-141-1/+1
* - the "mini" column labels generated when using subqueries, whichMike Bayer2007-04-111-9/+10
* - merged the "execcontext" branch, refactors engine/dialect codepathsMike Bayer2007-04-021-27/+21
* - column label and bind param "truncation" also generateMike Bayer2007-03-281-24/+53
* added label truncation for bind param names which was lost in the previous re...Mike Bayer2007-03-281-9/+27
* - preliminary support for unicode table and column names added.Mike Bayer2007-03-271-11/+9
* - column labels are now generated in the compilation phase, whichMike Bayer2007-03-241-9/+15
* - for hackers, refactored the "visitor" system of ClauseElement andMike Bayer2007-03-111-21/+23
* - added concept of 'require_embedded' to corresponding_column.Mike Bayer2007-03-051-2/+2
* - bindparam() names are now repeatable! specify twoMike Bayer2007-03-031-16/+23
* - use_labels flag on select() wont auto-create labels for literal textMike Bayer2007-03-011-4/+9
* migrated (most) docstrings to pep-257 format, docstring generator using strai...Mike Bayer2007-02-251-172/+253
* - fixed generation of CHECK constraints on columns [ticket:464]Mike Bayer2007-02-171-0/+4
* - moved change for [ticket:466] to ansisql, since thats the syntax for all da...Mike Bayer2007-02-171-2/+3
* - added "schema" argument to all has_table() calls, only supported so far by PGMike Bayer2007-02-041-2/+2
* - 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