add special method

This commit is contained in:
2021-09-08 13:11:28 +02:00
parent 01bd6877c6
commit 7de0ab2db9
4 changed files with 66 additions and 1 deletions

View File

@ -64,7 +64,7 @@ def execDatabaseOperation(func, params):
def _opGetMany(cursor, params):
items = []
cursor.execute(params["statement"])
cursor.execute(params["statement"], params["params"])
for itemObj in cursor:
logger.debug("item received {}".format(str(itemObj)))
items.append(itemObj)