summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql.py
Commit message (Expand)AuthorAgeFilesLines
...
* clauseelement.compile() totally works without an engineMike Bayer2006-02-251-0/+2
* merged sql_rearrangement branch , refactors sql package to work standalone withMike Bayer2006-02-251-221/+95
* Function needed compare_type so that its type is set as the type in boolean e...Mike Bayer2006-02-231-1/+3
* fix to EagerLoad where it late-initializes its eager chain, thereby not getti...Mike Bayer2006-02-221-1/+1
* merged eager loading overhaul rev 1001:1009Mike Bayer2006-02-201-13/+37
* exception package added, support throughoutMike Bayer2006-02-191-7/+8
* added indexes to schema/ansisql/engineMike Bayer2006-02-181-0/+21
* Join object wasnt exporting foreign keys correctlyMike Bayer2006-02-161-2/+2
* fixes mostly to get the important unit tests to run for Oracle, boxesw withou...Mike Bayer2006-02-141-1/+1
* more hammering of defaults. ORM will properly execute defaults and post-fetc...Mike Bayer2006-02-111-3/+6
* got oracle LIMIT/OFFSET to use row_number() syntaxMike Bayer2006-02-051-1/+1
* added BETWEEN, courtesy Rick Morrison. go Rick !Mike Bayer2006-02-041-1/+4
* self->compare_self()Mike Bayer2006-02-021-1/+1
* might add scalar() to select which does limit=1Mike Bayer2006-02-011-0/+15
* 2nd scalar fixMike Bayer2006-01-271-1/+5
* scalar() returns None if no rowsMike Bayer2006-01-271-1/+5
* refactoring to allow column.label() to work in selects, etc.Mike Bayer2006-01-271-62/+75
* order_by and group_by being output in wrong order. Added tests for same.Robert Leftwich2006-01-221-6/+6
* formatting?Mike Bayer2006-01-201-4/+4
* some docstringsMike Bayer2006-01-201-1/+19
* added explicit bind parameters and column type maps to text typeMike Bayer2006-01-201-9/+27
* implemented better hash_key on select allowing proper comparisons, implementedMike Bayer2006-01-191-6/+36
* ColumnClause needed optional foreign_key parameterMike Bayer2006-01-091-1/+2
* added count() to table, from objectsMike Bayer2006-01-081-3/+10
* improvements to relational algrebra of Alias, Select, Join objects, so that theyMike Bayer2006-01-081-109/+96
* added compare function to the more basic expression objectsMike Bayer2006-01-051-14/+76
* outerjoin onclause is optionalMike Bayer2006-01-041-1/+1
* copyright->2005,2006Mike Bayer2006-01-031-1/+1
* type objects pass engine around to get a hold of DBAPI type objectsMike Bayer2006-01-031-7/+8
* column.label is now a function; fix byroot example, add 'default_label' acces...Mike Bayer2006-01-021-0/+1
* broke apart deafult ordering into oid or primary key. a DB that has no oids ...Mike Bayer2006-01-021-10/+7
* order by oid -> order by *default_order_by() when called by mapper layer.Mike Bayer2006-01-021-3/+5
* rowid->oidMike Bayer2006-01-021-15/+15
* rowid_column becomes more like the "order by column". 'default_ordering' fla...Mike Bayer2006-01-011-4/+19
* shuffling to allow standard 'types' module inMike Bayer2005-12-311-6/+12
* fix to ansisql when it tries to determine param-based select clause that itsMike Bayer2005-12-311-0/+3
* license switchMike Bayer2005-12-311-13/+2
* changes related to mapping against arbitrary selects, selects with labels or ...Mike Bayer2005-12-301-9/+19
* reworking concept of column lists, "FromObject", "Selectable";Mike Bayer2005-12-301-64/+111
* moved _match_primaries from properties to sql.join, so its generalized to all...Mike Bayer2005-12-291-3/+23
* move execute parameter processing from sql.ClauseElement to engine.execute_co...Mike Bayer2005-12-231-94/+26
* added "late WHERE" compilation to SELECT, adds where criterion based on extra...Mike Bayer2005-12-211-0/+13
* in_ clause uses bind params, for typing etc.Mike Bayer2005-12-201-5/+11
* refactoring of execution path, defaults, and treatment of different paramstylesMike Bayer2005-12-171-8/+28
* factored "sequence" execution in postgres in oracle to be generalized to the ...Mike Bayer2005-12-161-1/+2
* fixes to the previous checkin with distinct etcMike Bayer2005-12-081-41/+19
* some enhancemnets to unions, unions and selects need to be more commonly deri...Mike Bayer2005-12-081-1/+15
* added rudimentary support for limit and offset (with the hack version in oracle)Mike Bayer2005-12-071-2/+4
* docstrings, formatting fixesMike Bayer2005-12-041-25/+24
* more consistent treatment of columns, differentiation of selectable/non-selec...Mike Bayer2005-12-041-76/+103