Add database_change event

This commit is contained in:
Dang Mai 2013-01-29 20:49:57 -05:00
parent 2fc191ac6b
commit afae030477

View file

@ -979,6 +979,7 @@ class Transaction(object):
the row ID of the last affected row.
"""
cursor = self.lib._connection().execute(statement, subvals)
plugins.send('database_change')
return cursor.lastrowid
def script(self, statements):