summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKali Kaneko <kali@leap.se>2015-06-04 10:23:50 -0400
committerKali Kaneko <kali@leap.se>2015-06-05 11:22:42 -0400
commit6e3e31c0a357c633c0d52f996e4edd4bc159ccf7 (patch)
tree380f0f0397a383f3079e63b958f0fa88f5c253c0
parent0093b9b7cf79b0e2e83cc76783152cc56c98f572 (diff)
[feature] use raw operation, returns no result
-rw-r--r--client/src/leap/soledad/client/adbapi.py2
-rw-r--r--client/src/leap/soledad/client/api.py8
2 files changed, 9 insertions, 1 deletions
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):
"""