Source code for getml.database.get_colnames

# Copyright 2022 The SQLNet Company GmbH
#
# This file is licensed under the Elastic License 2.0 (ELv2).
# Refer to the LICENSE.txt file in the root of the repository
# for details.
#


"""
Lists the colnames of a table held in the database.
"""

import json
from typing import Any, Dict, Optional

import getml.communication as comm

from .connection import Connection


[docs]def get_colnames(name: str, conn: Optional[Connection] = None): """ Lists the colnames of a table held in the database. Args: name (str): The name of the table in the database. conn (:class:`~getml.database.Connection`, optional): The database connection to be used. If you don't explicitly pass a connection, the engine will use the default connection. """ conn = conn or Connection() cmd: Dict[str, Any] = {} cmd["name_"] = name cmd["type_"] = "Database.get_colnames" cmd["conn_id_"] = conn.conn_id with comm.send_and_get_socket(cmd) as sock: msg = comm.recv_string(sock) if msg != "Success!": sock.close() comm.engine_exception_handler(msg) arr = json.loads(comm.recv_string(sock)) return arr