The most prominently affected DBAPI
is pyodbc. [ticket:2489]
+ - [bug] Fixed bug affecting Py3K whereby
+ string positional parameters passed to
+ engine/connection execute() would fail to be
+ interpreted correctly, due to __iter__
+ being present on Py3K string.
+ [ticket:2503].
+
- oracle
- [bug] Added ROWID to oracle.*, [ticket:2483]
elif len(multiparams) == 1:
zero = multiparams[0]
if isinstance(zero, (list, tuple)):
- if not zero or hasattr(zero[0], '__iter__'):
+ if not zero or isinstance(zero[0], (list, tuple, dict)):
return zero
else:
return [zero]
else:
return [[zero]]
else:
- if hasattr(multiparams[0], '__iter__'):
+ if isinstance(multiparams[0], (list, tuple, dict)):
return multiparams
else:
return [multiparams]
def test_profile_2_insert(self):
self.test_baseline_2_insert()
- @profiling.function_call_count(3340, {'2.4': 2158, '2.7':3541,
- '2.7+cextension':3317, '2.6':3564})
+ @profiling.function_call_count(3333, {'2.4': 2358})
def test_profile_3_properties(self):
self.test_baseline_3_properties()
(6, 'donkey'),
(7, 'sally'),
]
+ for multiparam, param in [
+ (("jack", "fred"), {}),
+ ((["jack", "fred"],), {})
+ ]:
+ res = conn.execute(
+ "select * from users where user_name=? or "
+ "user_name=? order by user_id",
+ *multiparam, **param)
+ assert res.fetchall() == [
+ (1, 'jack'),
+ (2, 'fred')
+ ]
+ res = conn.execute("select * from users where user_name=?",
+ "jack"
+ )
+ assert res.fetchall() == [(1, 'jack')]
conn.execute('delete from users')
go(testing.db)
res = conn.execute('select * from users order by user_id')
assert res.fetchall() == [(1, 'jack'), (2, 'ed'), (3,
'horse'), (4, 'sally'), (5, None)]
+ for multiparam, param in [
+ (("jack", "ed"), {}),
+ ((["jack", "ed"],), {})
+ ]:
+ res = conn.execute(
+ "select * from users where user_name=%s or "
+ "user_name=%s order by user_id",
+ *multiparam, **param)
+ assert res.fetchall() == [
+ (1, 'jack'),
+ (2, 'ed')
+ ]
+ res = conn.execute("select * from users where user_name=%s",
+ "jack"
+ )
+ assert res.fetchall() == [(1, 'jack')]
+
conn.execute('delete from users')
go(testing.db)
conn = testing.db.connect()