in src/lindorm_mcp_server/lindorm_wide_table.py [0:0]
def __init__(self, table_host: str, username: str, password: str, database='default'):
self.config = {
'host': table_host,
'port': 33060,
'user': username,
'password': password,
'database': database
}
self.connection = None
self.cursor = None
self._connect()