| Commit message (Expand) | Author | Age | Files | Lines |
| * | - fixed condition that occurred during reflection when a primary key | Mike Bayer | 2006-09-30 | 1 | -0/+6 |
| * | decruftify | Mike Bayer | 2006-09-28 | 1 | -4/+2 |
| * | - added autoincrement=True to Column; will disable schema generation | Mike Bayer | 2006-09-23 | 1 | -3/+14 |
| * | - ForeignKey reports better error message for column not found | Mike Bayer | 2006-09-22 | 1 | -5/+8 |
| * | further fixes to case sensitive logic | Mike Bayer | 2006-09-04 | 1 | -12/+37 |
| * | defaults and constraints have optional parent | Mike Bayer | 2006-08-31 | 1 | -2/+2 |
| * | - added case_sensitive argument to MetaData, Table, Column, determines | Mike Bayer | 2006-08-31 | 1 | -27/+67 |
| * | - deregister Table from MetaData when autoload fails; [ticket:289] | Mike Bayer | 2006-08-28 | 1 | -4/+8 |
| * | [ticket:282] | Mike Bayer | 2006-08-23 | 1 | -1/+1 |
| * | working on sequence quoting support.... | Mike Bayer | 2006-08-21 | 1 | -7/+17 |
| * | - postgres reflection moved to use pg_schema tables, can be overridden | Mike Bayer | 2006-08-21 | 1 | -2/+14 |
| * | quoting facilities set up so that database-specific quoting can be | Mike Bayer | 2006-08-12 | 1 | -0/+11 |
| * | all create()/drop() calls have a keyword argument of "connectable". | Mike Bayer | 2006-08-09 | 1 | -14/+42 |
| * | patch for [ticket:105], adding "owner" support to oracle...not tested yet | Mike Bayer | 2006-07-19 | 1 | -0/+3 |
| * | added table.exists() | Mike Bayer | 2006-07-19 | 1 | -0/+10 |
| * | added 'checkfirst' argument to table.create()/table.drop() | Mike Bayer | 2006-07-19 | 1 | -6/+6 |
| * | added __setitem__ to Constraint | Mike Bayer | 2006-07-18 | 1 | -0/+2 |
| * | overhaul to schema, addition of ForeignKeyConstraint/ | Mike Bayer | 2006-07-14 | 1 | -30/+141 |
| * | some adjustments to activemapper's objectstore to be composed against Session... | Mike Bayer | 2006-07-01 | 1 | -2/+2 |
| * | removed historyarray test | Mike Bayer | 2006-06-16 | 1 | -2/+11 |
| * | fixed bug where tables with schema name werent getting indexed in metadata co... | Mike Bayer | 2006-06-06 | 1 | -5/+2 |
| * | restored global_connect() function, default table metadata | Mike Bayer | 2006-06-02 | 1 | -0/+9 |
| * | merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1 | Mike Bayer | 2006-05-25 | 1 | -120/+211 |
| * | anonymous indexes use column._label to avoid name collisions | Mike Bayer | 2006-05-23 | 1 | -2/+2 |
| * | had unicode check improperly placed | Mike Bayer | 2006-05-06 | 1 | -2/+3 |
| * | foreignkey checks for unicode incoming string | Mike Bayer | 2006-05-03 | 1 | -1/+2 |
| * | commented out default schema name check | Mike Bayer | 2006-04-26 | 1 | -1/+1 |
| * | a little spring cleaning for the util package, etc | Mike Bayer | 2006-04-07 | 1 | -2/+2 |
| * | split up Session into Session/LegacySession, added some new constructor args | Mike Bayer | 2006-04-06 | 1 | -14/+41 |
| * | moves the binding of a TypeEngine object from "schema/statement creation" tim... | Mike Bayer | 2006-04-06 | 1 | -1/+0 |
| * | merged Rick Morrison / Runar Petursson's MS-SQL module, with adjustments to a... | Mike Bayer | 2006-04-03 | 1 | -2/+5 |
| * | refactor to Compiled.get_params() to return new ClauseParameters object, a mo... | Mike Bayer | 2006-03-13 | 1 | -1/+1 |
| * | got column onupdate working | Mike Bayer | 2006-03-05 | 1 | -1/+9 |
| * | got column defaults to be executeable | Mike Bayer | 2006-03-04 | 1 | -9/+21 |
| * | making sequences, column defaults independently executeable | Mike Bayer | 2006-03-04 | 1 | -4/+15 |
| * | engine argument on tables optional | Mike Bayer | 2006-03-02 | 1 | -0/+3 |
| * | made SchemaEngine more prominent as the base of Table association | Mike Bayer | 2006-03-01 | 1 | -4/+9 |
| * | Merge indexes [1047]:[1048] into trunk (for #6) | Jason Pellerin | 2006-02-26 | 1 | -20/+79 |
| * | create() statements return the created object so they can be instantiated and | Mike Bayer | 2006-02-26 | 1 | -0/+2 |
| * | merged sql_rearrangement branch , refactors sql package to work standalone with | Mike Bayer | 2006-02-25 | 1 | -105/+58 |
| * | fix to silent "recursive" bug in schema getattr that was somehow running only...rel_0_1_2 | Mike Bayer | 2006-02-24 | 1 | -1/+1 |
| * | fix to EagerLoad where it late-initializes its eager chain, thereby not getti... | Mike Bayer | 2006-02-22 | 1 | -0/+6 |
| * | merged eager loading overhaul rev 1001:1009 | Mike Bayer | 2006-02-20 | 1 | -1/+4 |
| * | exception package added, support throughout | Mike Bayer | 2006-02-19 | 1 | -8/+9 |
| * | added indexes to schema/ansisql/engine | Mike Bayer | 2006-02-18 | 1 | -2/+54 |
| * | added an assertion to insure that a column is only attached to one table | Mike Bayer | 2006-02-17 | 1 | -0/+2 |
| * | streamlined engine.schemagenerator and engine.schemadropper methodology | Mike Bayer | 2006-02-11 | 1 | -5/+5 |
| * | table supports per-engine-type options, ansisql allows engines | Mike Bayer | 2006-02-05 | 1 | -3/+1 |
| * | started PassiveDefault, which is a "database-side" default. mapper will go | Mike Bayer | 2006-02-05 | 1 | -0/+12 |
| * | columns can be specified to override those from autoload=True | Mike Bayer | 2006-02-04 | 1 | -4/+5 |