summaryrefslogtreecommitdiff
path: root/lib/sqlalchemy/engine.py
Commit message (Expand)AuthorAgeFilesLines
* merged 0.2 branch into trunk; 0.1 now in sqlalchemy/branches/rel_0_1Mike Bayer2006-05-251-878/+0
* added cgi parser for url key/value connect strings, towards [ticket:157]Mike Bayer2006-04-171-5/+3
* pool argument adjusts for DBProxy/PoolMike Bayer2006-04-071-3/+6
* mapper's querying facilities migrated to new query.Query() object, which can ...Mike Bayer2006-04-061-0/+11
* moves the binding of a TypeEngine object from "schema/statement creation" tim...Mike Bayer2006-04-061-2/+2
* merged Rick Morrison / Runar Petursson's MS-SQL module, with adjustments to a...Mike Bayer2006-04-031-4/+4
* except it fails a unit test. OK, make it ia KeyErrorMike Bayer2006-03-261-4/+4
* util: the __setitem__ method on historyarraylist was meaningless, surprising ...Mike Bayer2006-03-261-4/+4
* added *args **kwargs pass-thru to transaction()Mike Bayer2006-03-251-3/+5
* ResultProxy has an iterator interfaceMike Bayer2006-03-251-0/+8
* added "nest_on" option for Session, so nested transactions can occur mostly a...Mike Bayer2006-03-221-2/+6
* rolled back the operationalerror catch...definitely doesnt work right nowMike Bayer2006-03-171-3/+0
* put a try/finally to insure that SQLSession is cleaned out on rollback/commit...Mike Bayer2006-03-171-6/+10
* overhaul to SQLSession change from yesterday, needs to use the threadlocal ca...Mike Bayer2006-03-171-5/+16
* attempting to catch OperationalErrors and invalidate the connectionMike Bayer2006-03-171-0/+3
* fixed nasty transaction counting bug with new session thing + unit testMike Bayer2006-03-171-0/+6
* refactor to engine to have a separate SQLSession object. allows nested trans...Mike Bayer2006-03-171-34/+59
* SQLSession.....Mike Bayer2006-03-171-1/+3
* expanded and integrated qvx's patch for dotted function namesMike Bayer2006-03-161-4/+1
* added unique_connection() method to engine, connection pool to return a conne...Mike Bayer2006-03-141-0/+4
* oracle is requiring dictionary params to be in a clean dict, added conversionMike Bayer2006-03-131-20/+24
* refactor to Compiled.get_params() to return new ClauseParameters object, a mo...Mike Bayer2006-03-131-1/+19
* utf-8 encoding is switchable at the engine level, ticket [ticket:101]Mike Bayer2006-03-101-1/+2
* serious overhaul to get eager loads to work inline with an inheriting mapper,...Mike Bayer2006-03-081-0/+2
* added unittest for orm-persisted insert without a postfetch, tweak to engine ...Mike Bayer2006-03-051-2/+2
* got mapper to receive the onupdates after updating an instance (also properly...Mike Bayer2006-03-051-1/+14
* got column onupdate workingMike Bayer2006-03-051-2/+44
* got column defaults to be executeableMike Bayer2006-03-041-0/+11
* making sequences, column defaults independently executeableMike Bayer2006-03-041-3/+3
* removed the dependency of ANSICompiler on SQLEngine. you can now make ANSICo...Mike Bayer2006-03-041-5/+1
* changed default "none" parameters to check positional styleMike Bayer2006-03-041-6/+5
* added util.Logger object with configurable thread/timestamp viewMike Bayer2006-03-031-6/+3
* made SchemaEngine more prominent as the base of Table associationMike Bayer2006-03-011-1/+5
* added convert_unicode flag to engine + unittest, does unicode in/out translat...Mike Bayer2006-03-011-1/+2
* added items() method to RowProxy + unittest, courtesy dialtone@divmod.comMike Bayer2006-02-281-0/+2
* fixed an importMike Bayer2006-02-271-0/+1
* create() statements return the created object so they can be instantiated andMike Bayer2006-02-261-0/+1
* merged sql_rearrangement branch , refactors sql package to work standalone withMike Bayer2006-02-251-27/+4
* merged eager loading overhaul rev 1001:1009Mike Bayer2006-02-201-3/+6
* exception package added, support throughoutMike Bayer2006-02-191-12/+12
* added indexes to schema/ansisql/engineMike Bayer2006-02-181-6/+14
* bind params upon insert are totally column "name" based, so in process_defaul...Mike Bayer2006-02-171-1/+1
* Modified objectstore to look for primary key param values by column name not ...Robert Leftwich2006-02-171-3/+3
* streamlined engine.schemagenerator and engine.schemadropper methodologyMike Bayer2006-02-111-19/+9
* derefences connection pool upon dispose()Mike Bayer2006-02-091-0/+1
* took out print statementMike Bayer2006-02-071-1/+0
* trying to get mappers to support having versions against different tables for...Mike Bayer2006-02-071-0/+1
* table supports per-engine-type options, ansisql allows enginesMike Bayer2006-02-051-1/+1
* started PassiveDefault, which is a "database-side" default. mapper will goMike Bayer2006-02-051-1/+11
* added ISchema object to engine/information_schema, provides somewhat generic ...Mike Bayer2006-02-041-0/+12