summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* added support for string date passthru in sqliteMike Bayer2007-08-162-1/+23
* added 'inherit_foreign_keys' arg to mapper()Mike Bayer2007-08-164-1/+110
* use threading.local if availableJason Kirtland2007-08-153-22/+28
* fix hasattr typo [ticket:744]Jason Kirtland2007-08-151-1/+1
* stopgap, need a general strategy for raising readable exceptions for unicode ...Jason Kirtland2007-08-151-1/+2
* -removed print statementsMike Bayer2007-08-152-3/+0
* mass has_key->__contains__ migration, [ticket:738]Mike Bayer2007-08-1519-52/+54
* - moved unicode schema ORM tests to unitofwork.py tests. mostlyMike Bayer2007-08-154-37/+77
* - cleanup, converted unitofwork.py to standard fixturesMike Bayer2007-08-154-246/+136
* removed init_attr() call, which has shown to not increase performanceMike Bayer2007-08-152-15/+0
* - merged "fasttypes" branch. this branch changes the signatureMike Bayer2007-08-1420-534/+789
* cleanupMike Bayer2007-08-141-8/+4
* revert previous change; had misunderstood contextPaul Johnston2007-08-141-2/+0
* fudge to make SQL asserts work reliably with MSSQLPaul Johnston2007-08-141-0/+2
* Make versioningtest.test_basic only assert when the dbapi support sane_rowcountPaul Johnston2007-08-141-1/+0
* added sqlite/sa "unprofiled" raw time testsMike Bayer2007-08-141-1/+28
* added full fetching of result columns, cut overall size to 50000Mike Bayer2007-08-141-2/+4
* a mass insert/ select benchmarking test, fromMike Bayer2007-08-141-0/+31
* adjustment to table_names test such that the DB can have extra tables aroundMike Bayer2007-08-141-1/+1
* removed assertion for "no tables in db"rel_0_4beta2Mike Bayer2007-08-141-1/+0
* commented out unicode foriegn keys for now, not working on mysql or postgresMike Bayer2007-08-141-4/+13
* attempt to get SessionTest to close transactions betterMike Bayer2007-08-141-0/+2
* - fixed endless loopMike Bayer2007-08-143-4/+6
* - base_mapper() becomes a plain attributeMike Bayer2007-08-149-91/+132
* added engine_from_config() function for helping to create_engine()Mike Bayer2007-08-144-10/+62
* docstirng...Mike Bayer2007-08-131-2/+2
* added scoped session test independent of Session.mapper testMike Bayer2007-08-131-1/+34
* - a rudimental SessionExtension class has been added, allowing user-definedMike Bayer2007-08-133-4/+79
* - generalized a SQLCompileTest out of select.py, installedMike Bayer2007-08-137-256/+321
* adjusted mysql autoload from a named schema, esp. for windowsJason Kirtland2007-08-131-8/+7
* Removed unused imports, other import adjustments per pyflakesJason Kirtland2007-08-139-19/+21
* Centralized some `try: import foo except: import other as foo` imports in utilJason Kirtland2007-08-134-21/+10
* Added more unicode foreign key tests for [ticket:729]Jason Kirtland2007-08-121-3/+31
* auto-commit after LOAD DATA INFILE for mysqlJason Kirtland2007-08-123-6/+19
* - got is_subquery() working in the case of compound selects, test for ms-sqlMike Bayer2007-08-122-7/+37
* removed ms-sql unsupportedsMike Bayer2007-08-121-2/+0
* - fixed compiler bug in mssqlMike Bayer2007-08-126-12/+57
* Close SQLite databases before deleting file, so the lock is released, importa...Paul Johnston2007-08-121-0/+2
* MSSQL: disable new 0.4 tests that cause hangsPaul Johnston2007-08-123-6/+8
* editsMike Bayer2007-08-121-2/+2
* - scoped_session docsMike Bayer2007-08-122-2/+127
* Fix missing import of 'operator'Paul Johnston2007-08-121-0/+1
* added "should_commit()" hook to ExecutionContext. dialects can override with...Mike Bayer2007-08-122-4/+14
* Bump.Jason Kirtland2007-08-121-1/+1
* typosMike Bayer2007-08-121-3/+3
* added a brief migration guiderel_0_4beta1Mike Bayer2007-08-121-0/+80
* two tests which assumed autoincrement=False for integer PK columns now requir...Mike Bayer2007-08-121-2/+2
* Docs.Jason Kirtland2007-08-121-0/+19
* Allow auto_increment on any pk column, not just the first.Jason Kirtland2007-08-122-7/+74
* Added an exception hierarchy shadowing DB-API exc typesJason Kirtland2007-08-115-39/+90