From 6e3e31c0a357c633c0d52f996e4edd4bc159ccf7 Mon Sep 17 00:00:00 2001 From: Kali Kaneko Date: Thu, 4 Jun 2015 10:23:50 -0400 Subject: [feature] use raw operation, returns no result --- client/src/leap/soledad/client/adbapi.py | 2 ++ client/src/leap/soledad/client/api.py | 8 +++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/client/src/leap/soledad/client/adbapi.py b/client/src/leap/soledad/client/adbapi.py index 4f75695f..bc0ab7a5 100644 --- a/client/src/leap/soledad/client/adbapi.py +++ b/client/src/leap/soledad/client/adbapi.py @@ -219,6 +219,8 @@ class U1DBConnectionPool(adbapi.ConnectionPool): return meth(*args, **kw) # XXX should return a fetchall? + # XXX add _runOperation too + def _runInteraction(self, interaction, *args, **kw): """ Interact with the database and return the result. diff --git a/client/src/leap/soledad/client/api.py b/client/src/leap/soledad/client/api.py index 63b1dfc0..df69037c 100644 --- a/client/src/leap/soledad/client/api.py +++ b/client/src/leap/soledad/client/api.py @@ -825,10 +825,16 @@ class Soledad(object): def raw_sqlcipher_query(self, *args, **kw): """ - Run a raw sqlcipher query in the local database. + Run a raw sqlcipher query in the local database, and return the result. """ return self._dbpool.runQuery(*args, **kw) + def raw_sqlcipher_operation(self, *args, **kw): + """ + Run a raw sqlcipher operation in the local database, and return None. + """ + return self._dbpool.runOperation(*args, **kw) + def _convert_to_unicode(content): """ -- cgit v1.2.3