MCPcopy
hub / github.com/isso-comments/isso / execute

Method execute

isso/db/__init__.py:55–60  ·  view source on GitHub ↗
(self, sql, args=())

Source from the content-addressed store, hash-verified

53 )
54
55 def execute(self, sql, args=()):
56 if isinstance(sql, (list, tuple)):
57 sql = " ".join(sql)
58
59 with sqlite3.connect(self.path) as con:
60 return con.execute(sql, args)
61
62 @property
63 def version(self):

Callers 15

test_disqus_empty_idMethod · 0.95
test_wordpressMethod · 0.95
test_genericMethod · 0.95
__init__Method · 0.95
versionMethod · 0.95
dispatchFunction · 0.80
testRateLimitMethod · 0.80
testSelfReplyMethod · 0.80

Calls

no outgoing calls