summaryrefslogtreecommitdiff
path: root/test/testbase.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-04-03 01:35:48 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-04-03 01:35:48 +0000
commitc026339ad81dc3fc225330e9c1d383821b4e29de (patch)
tree11042e1fb57fba1b9f4eb703de30586dd5283752 /test/testbase.py
parentcc35495023e8ad6fdbb49dcc4ff0b72d6f6f1d26 (diff)
downloadsqlalchemy-c026339ad81dc3fc225330e9c1d383821b4e29de.tar.gz
merged Rick Morrison / Runar Petursson's MS-SQL module, with adjustments to alias schema-qualified Table objects
Diffstat (limited to 'test/testbase.py')
-rw-r--r--test/testbase.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/testbase.py b/test/testbase.py
index 1578be5a0..923ed7de9 100644
--- a/test/testbase.py
+++ b/test/testbase.py
@@ -46,9 +46,11 @@ def parse_argv():
elif DBTYPE == 'oracle8':
db_uri = 'oracle://user=scott&password=tiger'
opts = {'use_ansi':False}
+ elif DBTYPE == 'mssql':
+ db_uri = 'mssql://database=test&user=scott&password=tiger'
if not db_uri:
- raise "Could not create engine. specify --db <sqlite|sqlite_file|postgres|mysql|oracle> to test runner."
+ raise "Could not create engine. specify --db <sqlite|sqlite_file|postgres|mysql|oracle|oracle8|mssql> to test runner."
if PROXY:
db = proxy.ProxyEngine(echo=echo, default_ordering=True, **opts)