| Commit message (Expand) | Author | Age | Files | Lines |
* | merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1 | Mike Bayer | 2006-05-25 | 1 | -878/+0 |
* | added cgi parser for url key/value connect strings, towards [ticket:157] | Mike Bayer | 2006-04-17 | 1 | -5/+3 |
* | pool argument adjusts for DBProxy/Pool | Mike Bayer | 2006-04-07 | 1 | -3/+6 |
* | mapper's querying facilities migrated to new query.Query() object, which can ... | Mike Bayer | 2006-04-06 | 1 | -0/+11 |
* | moves the binding of a TypeEngine object from "schema/statement creation" tim... | Mike Bayer | 2006-04-06 | 1 | -2/+2 |
* | merged Rick Morrison / Runar Petursson's MS-SQL module, with adjustments to a... | Mike Bayer | 2006-04-03 | 1 | -4/+4 |
* | except it fails a unit test. OK, make it ia KeyError | Mike Bayer | 2006-03-26 | 1 | -4/+4 |
* | util: the __setitem__ method on historyarraylist was meaningless, surprising ... | Mike Bayer | 2006-03-26 | 1 | -4/+4 |
* | added *args **kwargs pass-thru to transaction() | Mike Bayer | 2006-03-25 | 1 | -3/+5 |
* | ResultProxy has an iterator interface | Mike Bayer | 2006-03-25 | 1 | -0/+8 |
* | added "nest_on" option for Session, so nested transactions can occur mostly a... | Mike Bayer | 2006-03-22 | 1 | -2/+6 |
* | rolled back the operationalerror catch...definitely doesnt work right now | Mike Bayer | 2006-03-17 | 1 | -3/+0 |
* | put a try/finally to insure that SQLSession is cleaned out on rollback/commit... | Mike Bayer | 2006-03-17 | 1 | -6/+10 |
* | overhaul to SQLSession change from yesterday, needs to use the threadlocal ca... | Mike Bayer | 2006-03-17 | 1 | -5/+16 |
* | attempting to catch OperationalErrors and invalidate the connection | Mike Bayer | 2006-03-17 | 1 | -0/+3 |
* | fixed nasty transaction counting bug with new session thing + unit test | Mike Bayer | 2006-03-17 | 1 | -0/+6 |
* | refactor to engine to have a separate SQLSession object. allows nested trans... | Mike Bayer | 2006-03-17 | 1 | -34/+59 |
* | SQLSession..... | Mike Bayer | 2006-03-17 | 1 | -1/+3 |
* | expanded and integrated qvx's patch for dotted function names | Mike Bayer | 2006-03-16 | 1 | -4/+1 |
* | added unique_connection() method to engine, connection pool to return a conne... | Mike Bayer | 2006-03-14 | 1 | -0/+4 |
* | oracle is requiring dictionary params to be in a clean dict, added conversion | Mike Bayer | 2006-03-13 | 1 | -20/+24 |
* | refactor to Compiled.get_params() to return new ClauseParameters object, a mo... | Mike Bayer | 2006-03-13 | 1 | -1/+19 |
* | utf-8 encoding is switchable at the engine level, ticket [ticket:101] | Mike Bayer | 2006-03-10 | 1 | -1/+2 |
* | serious overhaul to get eager loads to work inline with an inheriting mapper,... | Mike Bayer | 2006-03-08 | 1 | -0/+2 |
* | added unittest for orm-persisted insert without a postfetch, tweak to engine ... | Mike Bayer | 2006-03-05 | 1 | -2/+2 |
* | got mapper to receive the onupdates after updating an instance (also properly... | Mike Bayer | 2006-03-05 | 1 | -1/+14 |
* | got column onupdate working | Mike Bayer | 2006-03-05 | 1 | -2/+44 |
* | got column defaults to be executeable | Mike Bayer | 2006-03-04 | 1 | -0/+11 |
* | making sequences, column defaults independently executeable | Mike Bayer | 2006-03-04 | 1 | -3/+3 |
* | removed the dependency of ANSICompiler on SQLEngine. you can now make ANSICo... | Mike Bayer | 2006-03-04 | 1 | -5/+1 |
* | changed default "none" parameters to check positional style | Mike Bayer | 2006-03-04 | 1 | -6/+5 |
* | added util.Logger object with configurable thread/timestamp view | Mike Bayer | 2006-03-03 | 1 | -6/+3 |
* | made SchemaEngine more prominent as the base of Table association | Mike Bayer | 2006-03-01 | 1 | -1/+5 |
* | added convert_unicode flag to engine + unittest, does unicode in/out translat... | Mike Bayer | 2006-03-01 | 1 | -1/+2 |
* | added items() method to RowProxy + unittest, courtesy dialtone@divmod.com | Mike Bayer | 2006-02-28 | 1 | -0/+2 |
* | fixed an import | Mike Bayer | 2006-02-27 | 1 | -0/+1 |
* | create() statements return the created object so they can be instantiated and | Mike Bayer | 2006-02-26 | 1 | -0/+1 |
* | merged sql_rearrangement branch , refactors sql package to work standalone with | Mike Bayer | 2006-02-25 | 1 | -27/+4 |
* | merged eager loading overhaul rev 1001:1009 | Mike Bayer | 2006-02-20 | 1 | -3/+6 |
* | exception package added, support throughout | Mike Bayer | 2006-02-19 | 1 | -12/+12 |
* | added indexes to schema/ansisql/engine | Mike Bayer | 2006-02-18 | 1 | -6/+14 |
* | bind params upon insert are totally column "name" based, so in process_defaul... | Mike Bayer | 2006-02-17 | 1 | -1/+1 |
* | Modified objectstore to look for primary key param values by column name not ... | Robert Leftwich | 2006-02-17 | 1 | -3/+3 |
* | streamlined engine.schemagenerator and engine.schemadropper methodology | Mike Bayer | 2006-02-11 | 1 | -19/+9 |
* | derefences connection pool upon dispose() | Mike Bayer | 2006-02-09 | 1 | -0/+1 |
* | took out print statement | Mike Bayer | 2006-02-07 | 1 | -1/+0 |
* | trying to get mappers to support having versions against different tables for... | Mike Bayer | 2006-02-07 | 1 | -0/+1 |
* | table supports per-engine-type options, ansisql allows engines | Mike Bayer | 2006-02-05 | 1 | -1/+1 |
* | started PassiveDefault, which is a "database-side" default. mapper will go | Mike Bayer | 2006-02-05 | 1 | -1/+11 |
* | added ISchema object to engine/information_schema, provides somewhat generic ... | Mike Bayer | 2006-02-04 | 1 | -0/+12 |