MySQLIntegration Objects
class MySQLIntegration(GraiIntegrationImplementation)
A class for extracting Grai compliant metadata from MySQL
Attributes:
connector
- Responsible for communicating with MySQL.
__init__
def __init__(source: SourceV1,
version: Optional[str] = None,
dbname: Optional[str] = None,
user: Optional[str] = None,
password: Optional[str] = None,
host: Optional[str] = None,
port: Optional[Union[str, int]] = None,
namespace: Optional[str] = None)
Initializes the MsSQL integration.
Arguments:
source
- The Grai data source to associate with output from the integration. More information about source objects is available in thegrai_schemas
library.version
- The Grai data version to associate with output from the integrationnamespace
- The Grai namespace to associate with output from the integrationdbname
- The MySQL database to connect to.user
- The username to use when connecting to MySQL.password
- The password to use when connecting to MySQL.host
- The MySQL host address.port
- The MySQL port.
get_nodes_and_edges
@cache
def get_nodes_and_edges() -> Tuple[List[SourcedNode], List[SourcedEdge]]
Returns a tuple of lists of SourcedNode and SourcedEdge objects
ready
def ready() -> bool
Returns True if the integration is ready to run
nodes
def nodes() -> List[SourcedNode]
Returns a list of SourcedNode objects
edges
def edges() -> List[SourcedEdge]
Returns a list of SourcedEdge objects