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

Method get_databases

solidui/datasource_plugin/base.py:80–88  ·  view source on GitHub ↗
(client)

Source from the content-addressed store, hash-verified

78
79 @staticmethod
80 def get_databases(client):
81 def query():
82 try:
83 return client.get_databases()
84 finally:
85 client.close()
86
87 future = JdbcClientFactory.executor.submit(query)
88 return future.result()
89
90 @staticmethod
91 def get_tables(client, database: str):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected