Lines Matching full:execute
93 cursor.execute("pragma synchronous = off;")
97 cursor.execute("pragma journal_mode = WAL;")
98 cursor.execute("pragma wal_autocheckpoint = 100;")
114 cursor.execute(*query)
146 cursor.execute(*query)
161 cursor.execute("SELECT * from %s where key=?;" % self.table, [key])
172 cursor.execute("DELETE from %s where key=?;" % self.table, [key])
183 cursor.execute("BEGIN EXCLUSIVE")
185 cursor.execute("SELECT * from %s where key=?;" % self.table, [key])
188 cursor.execute("UPDATE %s SET value=? WHERE key=?;" % self.table, [value, key])
190 cursor.execute("INSERT into %s(key, value) values (?, ?);" % self.table, [key, value])
195 cursor.execute('SELECT * from %s where key=?;' % self.table, [key])
201 cursor.execute("SELECT COUNT(key) FROM %s;" % self.table)
236 cursor.execute("DELETE FROM %s;" % self.table)