summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql.py
Commit message (Expand)AuthorAgeFilesLines
* [ticket:280] statement execution supports using the same BindParamMike Bayer2006-08-181-5/+12
* quoting facilities set up so that database-specific quoting can beMike Bayer2006-08-121-1/+3
* removed superfluous **paramsMike Bayer2006-08-111-2/+2
* added "nowait" flag to Select() [ticket:270]Mike Bayer2006-08-111-1/+3
* oops: committed the rest of [changeset:1759], removed print in sqlite + rest...Mike Bayer2006-08-031-2/+2
* - better check for ambiguous join conditions in sql.Join; propigates to aMike Bayer2006-08-031-0/+5
* _selectable interface; allows sqlsoup to pass its classes to Join and have th...Jonathan Ellis2006-07-211-18/+16
* fix to typing in clause construction which specifically helpsMike Bayer2006-07-191-3/+10
* overhaul to schema, addition of ForeignKeyConstraint/Mike Bayer2006-07-141-8/+0
* got MS-SQL support largely working, including reflection, basic types, fair a...Mike Bayer2006-07-011-2/+2
* cast converted into its own ClauseElement so that it can have an explicit com...rel_0_2_3Mike Bayer2006-06-171-7/+18
* adjustment to better allow textual from clausesMike Bayer2006-06-121-2/+2
* separated standalone between(), column.between(), put literal checking for bo...Mike Bayer2006-06-081-5/+16
* fixed typing for between() operator, [ticket:202]Mike Bayer2006-06-081-3/+8
* HashSet is gone, uses set() for most sets in py2.4 or sets.Set.Mike Bayer2006-06-051-2/+2
* "count" label changed to "rowcount", and default "count" argument is first pk...Mike Bayer2006-06-011-2/+10
* merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1Mike Bayer2006-05-251-154/+212
* added explicit check for "==null()" to produce IS NULL, documnted "==None", "...Mike Bayer2006-05-241-9/+8
* rick morrison's CASE statement + unit testMike Bayer2006-05-151-18/+49
* added != support for None -> foo IS NOT NULLMike Bayer2006-05-121-2/+6
* added __mod__ typerel_0_1_7Mike Bayer2006-05-051-0/+2
* fix to subquery parensMike Bayer2006-04-281-3/+2
* fixed up expunge() and the continuing circular refs in attributes, added a un...Mike Bayer2006-04-191-1/+4
* added _get_from_obj to TypeClauseMike Bayer2006-04-171-1/+2
* had to take out the "treeification" of the dependency sort as it doenst reall...Mike Bayer2006-04-141-1/+2
* a little spring cleaning for the util package, etcMike Bayer2006-04-071-3/+2
* split up Session into Session/LegacySession, added some new constructor argsMike Bayer2006-04-061-28/+38
* moves the binding of a TypeEngine object from "schema/statement creation" tim...Mike Bayer2006-04-061-28/+22
* factored oid column into a consistent late-bound pattern, fixing [ticket:146]Mike Bayer2006-04-041-20/+33
* Added cast() to allow use of cast(tbl.c.col as Numeric(4,2)) in select and wh...Robert Leftwich2006-04-041-1/+20
* further order_by: order_by() with no arguments should not affect the current...Mike Bayer2006-04-031-2/+2
* ack, fixes to the order by stuff from last nightMike Bayer2006-04-031-3/+3
* added to_selectable() onto ColumnClause to simplify _get_col_by_originalMike Bayer2006-04-031-0/+6
* made order_by/group_by construction a little more simplisitcMike Bayer2006-04-031-46/+31
* added a type to label....Mike Bayer2006-04-031-2/+3
* added "parenthesis" check on binary clauses referencing binary clauses, for [...Mike Bayer2006-04-021-0/+4
* added for_update flag to Select/CompoundSelectMike Bayer2006-03-311-1/+3
* fixed "DISTINCT" spellingMike Bayer2006-03-281-1/+1
* column label generation checks for a conflict against a column named the same...Mike Bayer2006-03-261-1/+1
* removed all "tablename + '_' + columname" code and replaced with column._labe...Mike Bayer2006-03-251-1/+1
* some more tweaks to get more advanced polymorphic stuff to workMike Bayer2006-03-241-2/+4
* added "name" back to FromClauseMike Bayer2006-03-211-1/+1
* a few tweaks and the polymorph example can also use eager loadingMike Bayer2006-03-201-0/+1
* added distinct() function to column elements for "DISTINCT <col>"Mike Bayer2006-03-191-0/+2
* got rid of from "ids", using the From object itself as identity now. improve...Mike Bayer2006-03-191-22/+16
* der + engine...Mike Bayer2006-03-181-1/+1
* got oracle parenthesized rules for funcs back, fixed copy_container on functionMike Bayer2006-03-181-2/+2
* expanded and integrated qvx's patch for dotted function namesMike Bayer2006-03-161-1/+13
* added scalar subqueries within the column clause of another selectMike Bayer2006-03-131-10/+26
* oracle is requiring dictionary params to be in a clean dict, added conversionMike Bayer2006-03-131-0/+5