in asfpy/db.py [0:0]
def perform(self, *params):
"Perform the statement with PARAMs, or prepare the query."
# Use the exact same STATEMENT each time. Python's SQLite module
# caches the parsed statement, if the string is the same object.
self.execute(self.statement, params)