summaryrefslogtreecommitdiff
path: root/test/engine/parseconnect.py
Commit message (Collapse)AuthorAgeFilesLines
* - unit tests have been migrated from unittest to nose.Mike Bayer2009-06-101-233/+0
| | | | | See README.unittests for information on how to run the tests. [ticket:970]
* Global propigate -> propagate change to correct spelling. Additionally found ↵Michael Trier2008-11-091-1/+1
| | | | a couple of insures that should be ensure.
* r4695 merged to trunk; trunk now becomes 0.5.Mike Bayer2008-05-091-8/+8
| | | | 0.4 development continues at /sqlalchemy/branches/rel_0_4
* - updated the naming scheme of the base test classes in test/testlib/testing.py;Mike Bayer2008-02-111-2/+2
| | | | | tests extend from either TestBase or ORMTest, using additional mixins for special assertion methods as needed
* - testbase is gone, replaced by testenvJason Kirtland2008-01-121-22/+21
| | | | | | - Importing testenv has no side effects- explicit functions provide similar behavior to the old immediate behavior of testbase - testing.db has the configured db - Fixed up the perf/* scripts
* - string-based query param parsing/config file parser understandsMike Bayer2007-10-161-2/+4
| | | | wider range of string values for booleans [ticket:817]
* Extended 'engine_from_config' coercion for QueuePool size / overflow. ↵Jason Kirtland2007-08-291-2/+47
| | | | | | [ticket:763] Added a set of coercion tests.
* - tightened down the screws on logging a little bitMike Bayer2007-08-221-2/+0
|
* `from foo import (name, name)` isn't valid syntax for 2.3. ah well.Jason Kirtland2007-08-211-0/+1
| | | | omitting modules from sqlalchemy.__all__...
* added engine_from_config() function for helping to create_engine()Mike Bayer2007-08-141-8/+22
| | | | from an .ini style config
* - removed auto_close_cursors and disallow_open_cursors arguments from Pool;Mike Bayer2007-07-291-4/+3
| | | | reduces overhead as cursors are normally closed by ResultProxy and Connection.
* merging 0.4 branch to trunk. see CHANGES for details. 0.3 moves to ↵Mike Bayer2007-07-271-7/+5
| | | | maintenance branch in branches/rel_0_3.
* - added 'url' attribute to EngineMike Bayer2007-04-291-1/+11
| | | | - added docstring to 'echo' attribute
* - the dialects within sqlalchemy.databases become a setuptoolsMike Bayer2007-04-171-1/+7
| | | | | | entry points. loading the built-in database dialects works the same as always, but if none found will fall back to trying pkg_resources to load an external module [ticket:521]
* added mockdbapi to mysql dialect create to better help unit tests passMike Bayer2007-02-041-2/+2
|
* - create_engine() reworked to be strict about incoming **kwargs. all keywordMike Bayer2006-11-121-0/+69
| | | | | | arguments must be consumed by one of the dialect, connection pool, and engine constructors, else a TypeError is thrown which describes the full set of invalid kwargs in relation to the selected dialect/pool/engine configuration.
* doc edits, moved object display in uowdumper to be hex, fixed test runner in ↵Mike Bayer2006-09-251-1/+2
| | | | parseconnect
* - cleanup on connection methods + documentation. custom DBAPIMike Bayer2006-08-251-0/+52
| | | | | | | | | | arguments specified in query string, 'connect_args' argument to 'create_engine', or custom creation function via 'creator' function to 'create_engine'. - added "recycle" argument to Pool, is "pool_recycle" on create_engine, defaults to 3600 seconds; connections after this age will be closed and replaced with a new one, to handle db's that automatically close stale connections [ticket:274]
* - urls support escaped characters in passwords [ticket:281]Mike Bayer2006-08-221-2/+3
|
* adjument to regexp for parsing courtesy Barry WarsawMike Bayer2006-07-101-1/+6
|
* reorganized unit tests into subdirectoriesMike Bayer2006-06-051-0/+33