Fix automatic replacing mistake.
diff --git a/Modules/_sqlite/connection.c b/Modules/_sqlite/connection.c
index b046011..e8c28e3 100644
--- a/Modules/_sqlite/connection.c
+++ b/Modules/_sqlite/connection.c
@@ -378,7 +378,7 @@
pysqlite_reset_all_statements(self);
Py_BEGIN_ALLOW_THREADS
- rc = sqlite3_prepare(self->db, "READONLYLLBACK", -1, &statement, &tail);
+ rc = sqlite3_prepare(self->db, "ROLLBACK", -1, &statement, &tail);
Py_END_ALLOW_THREADS
if (rc != SQLITE_OK) {
_pysqlite_seterror(self->db);