bugfix
This commit is contained in:
parent
d5a53f2e53
commit
a52b6a8f05
@ -244,7 +244,7 @@ class SQLor(object):
|
|||||||
cur = self.cursor()
|
cur = self.cursor()
|
||||||
markedSQL,datas = self.maskingSQL(sql,{})
|
markedSQL,datas = self.maskingSQL(sql,{})
|
||||||
datas = [ self.dataConvert(d) for d in values ]
|
datas = [ self.dataConvert(d) for d in values ]
|
||||||
if async_mode:
|
if self.async_mode:
|
||||||
await cur.executemany(markedSQL,datas)
|
await cur.executemany(markedSQL,datas)
|
||||||
else:
|
else:
|
||||||
cur.executemany(markedSQL,datas)
|
cur.executemany(markedSQL,datas)
|
||||||
|
Loading…
Reference in New Issue
Block a user