summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/sql.py
Commit message (Expand)AuthorAgeFilesLines
* - string-based FROM clauses fixed, i.e. select(..., from_obj=["sometext"])Mike Bayer2006-12-121-1/+1
* - sending a selectable to an IN no longer creates a "union" out of multipleMike Bayer2006-11-291-4/+7
* added label() function to Select class, useable only with selectMike Bayer2006-11-271-1/+14
* - made kwargs parsing to Table strict; removed various obsoluete "redefine=Tr...Mike Bayer2006-11-261-50/+30
* some clenaup on the "correlation" API on the _Select classMike Bayer2006-11-251-13/+17
* - cleanup on some instance vars in Select (is_scalar, is_subquery, _froms is ...Mike Bayer2006-11-251-36/+52
* figured out how a Select can be in its own _froms list, changed assertion to ...Mike Bayer2006-10-311-2/+4
* converted imports to absoluteMike Bayer2006-10-261-1/+0
* updates to oracleMike Bayer2006-10-221-2/+2
* renamed Column/ColumnClause "hidden" to "_is_oid"Mike Bayer2006-10-221-5/+5
* some docstring stuffMike Bayer2006-10-201-1/+1
* ok, TableClause should be publicMike Bayer2006-10-171-9/+9
* reorganizing classnames a bit, flagging "private" classes in the sql package,Mike Bayer2006-10-171-130/+142
* - a fair amount of cleanup to the schema package, removal of ambiguousMike Bayer2006-10-141-17/+18
* - the "foreign_key" attribute on Column and ColumnElement in generalMike Bayer2006-10-081-5/+11
* - Function objects know what to do in a FROM clause now. theirMike Bayer2006-10-031-2/+13
* - added test suite to test improved from_obj/join behavior with Query/eagerlo...Mike Bayer2006-09-281-5/+2
* decruftifyMike Bayer2006-09-281-17/+28
* - pool will auto-close open cursors, or can be configured to raise an error i...Mike Bayer2006-09-281-70/+49
* - BooleanExpression includes new "negate" argument to specifyMike Bayer2006-09-211-12/+22
* added extract() function to sql dialectMike Bayer2006-09-141-2/+6
* - unicode fix for startswith()/endswith() [ticket:296]Mike Bayer2006-09-051-2/+2
* simplification to quoting to just cache strings per-dialect, added quoting fo...Mike Bayer2006-09-041-1/+3
* added limit/offset to union queriesMike Bayer2006-08-261-0/+2
* [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