MCPcopy Create free account
hub / github.com/CloudOrc/SolidUI / run_query

Method run_query

solidui/datasource_plugin/base.py:70–77  ·  view source on GitHub ↗
(client, sql: str)

Source from the content-addressed store, hash-verified

68
69 @staticmethod
70 def run_query(client, sql: str):
71 def query():
72 result = client.run_query(sql)
73 client.close()
74 return result
75
76 future = JdbcClientFactory.executor.submit(query)
77 return future.result()
78
79 @staticmethod
80 def get_databases(client):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected