The most prominently affected DBAPI
is pyodbc. Also in 0.7.8. [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]. Also in 0.7.8.
+
- [feature] Added a new system
for registration of new dialects in-process
without using an entrypoint. See the
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(3118, {'2.7':3109,
- '2.7+cextension':3109, '2.6':3109})
+ @profiling.function_call_count(3333)
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()