summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/ansisql.py
Commit message (Expand)AuthorAgeFilesLines
* 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
* removed the dependency of ANSICompiler on SQLEngine. you can now make ANSICo...Mike Bayer2006-03-041-19/+35
* Merge indexes [1047]:[1048] into trunk (for #6)Jason Pellerin2006-02-261-2/+7
* merged sql_rearrangement branch , refactors sql package to work standalone withMike Bayer2006-02-251-13/+10
* merged eager loading overhaul rev 1001:1009Mike Bayer2006-02-201-2/+2
* exception package added, support throughoutMike Bayer2006-02-191-2/+0
* added hooks for engines to add stuff to SELECT, etc.Mike Bayer2006-02-181-8/+12
* added indexes to schema/ansisql/engineMike Bayer2006-02-181-2/+19
* slight glitch when the same clause is compiled repeatedly and contains redund...Mike Bayer2006-02-121-1/+1
* more hammering of defaults. ORM will properly execute defaults and post-fetc...Mike Bayer2006-02-111-4/+3
* streamlined engine.schemagenerator and engine.schemadropper methodologyMike Bayer2006-02-111-5/+14
* table supports per-engine-type options, ansisql allows enginesMike Bayer2006-02-051-1/+4
* got oracle LIMIT/OFFSET to use row_number() syntaxMike Bayer2006-02-051-1/+3
* added explicit bind parameters and column type maps to text typeMike Bayer2006-01-201-0/+2
* key/value params on execute() are based off the from objects, not the select ...Mike Bayer2006-01-081-16/+15
* copyright->2005,2006Mike Bayer2006-01-031-1/+1
* type objects pass engine around to get a hold of DBAPI type objectsMike Bayer2006-01-031-3/+3
* postgres oids say byebye by default, putting hooks in for engines to determin...Mike Bayer2006-01-011-2/+9
* added a hook in for 'binary operator', so sqlite can exchangeMike Bayer2005-12-311-1/+4
* fix to ansisql when it tries to determine param-based select clause that itsMike Bayer2005-12-311-5/+5
* license switchMike Bayer2005-12-311-13/+2
* changes related to mapping against arbitrary selects, selects with labels or ...Mike Bayer2005-12-301-0/+7
* reworking concept of column lists, "FromObject", "Selectable";Mike Bayer2005-12-301-20/+19
* move execute parameter processing from sql.ClauseElement to engine.execute_co...Mike Bayer2005-12-231-9/+71
* added "late WHERE" compilation to SELECT, adds where criterion based on extra...Mike Bayer2005-12-211-2/+15
* fix to parameter thing in insertMike Bayer2005-12-201-1/+1
* typemap needs lower case keys since result set metadata is not always case-se...Mike Bayer2005-12-191-2/+7
* refactoring of execution path, defaults, and treatment of different paramstylesMike Bayer2005-12-171-44/+67
* factored "sequence" execution in postgres in oracle to be generalized to the ...Mike Bayer2005-12-161-2/+30
* fixes to the previous checkin with distinct etcMike Bayer2005-12-081-5/+1
* some enhancemnets to unions, unions and selects need to be more commonly deri...Mike Bayer2005-12-081-2/+7
* added rudimentary support for limit and offset (with the hack version in oracle)Mike Bayer2005-12-071-1/+14
* docstrings, formatting fixesMike Bayer2005-12-041-1/+1
* more consistent treatment of columns, differentiation of selectable/non-selec...Mike Bayer2005-12-041-7/+12
* math operatorsMike Bayer2005-12-041-8/+14
* primary_keys => primary_keyMike Bayer2005-12-041-1/+1
* refactorings to sql generation, unions, engine locationMike Bayer2005-12-031-2/+9
* migrated __ALL__ to __all__, oops, and reworked moduleMike Bayer2005-11-301-3/+3
* added group_by, having to select. added func.foo(a, b) keyword to express fun...Mike Bayer2005-11-291-4/+17
* some fixes to IN clauses, literal text clauses displaying text/numeric proper...Mike Bayer2005-11-271-5/+5