summaryrefslogtreecommitdiff
path: root/test/testbase.py
diff options
context:
space:
mode:
authorMike Bayer <mike_mp@zzzcomputing.com>2006-07-01 19:26:30 +0000
committerMike Bayer <mike_mp@zzzcomputing.com>2006-07-01 19:26:30 +0000
commitcce1f073e3ed924b83bfe15ae86ccf0d772b15c1 (patch)
tree8435dd3ea4ae7cf39c6a283156461a714a88373d /test/testbase.py
parent6133dbee0914b9e2a80af1c323430493054ef45a (diff)
downloadsqlalchemy-cce1f073e3ed924b83bfe15ae86ccf0d772b15c1.tar.gz
got MS-SQL support largely working, including reflection, basic types, fair amount of ORM stuff, etc.
'rowcount' label is reseved in MS-SQL and had to change in sql.py count() as well as orm.query
Diffstat (limited to 'test/testbase.py')
-rw-r--r--test/testbase.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/testbase.py b/test/testbase.py
index 8fbd6954c..ddec64179 100644
--- a/test/testbase.py
+++ b/test/testbase.py
@@ -72,7 +72,7 @@ def parse_argv():
db_uri = 'oracle://scott:tiger@127.0.0.1:1521'
opts = {'use_ansi':False}
elif DBTYPE == 'mssql':
- db_uri = 'mssql://scott:tiger@/test'
+ db_uri = 'mssql://scott:tiger@SQUAWK\\SQLEXPRESS/test'
if not db_uri:
raise "Could not create engine. specify --db <sqlite|sqlite_file|postgres|mysql|oracle|oracle8|mssql> to test runner."