(self, q)
| 578 | """Transaction Engine used in sub transactions.""" |
| 579 | |
| 580 | def query(self, q): |
| 581 | db_cursor = ctx.db.cursor() |
| 582 | ctx.db_execute(db_cursor, SQLQuery(q % transaction_count)) |
| 583 | |
| 584 | def do_transact(self): |
| 585 | self.query("SAVEPOINT webpy_sp_%s") |
no test coverage detected