Module spin_sdk.mysql

Module for interacting with a MySQL database

Expand source code
"""Module for interacting with a MySQL database"""

from spin_sdk.wit.imports.mysql import Connection

def open(connection_string: str) -> Connection:
    """
    Open a connection with a MySQL database.
    
    The connection_string is the MySQL URL connection string.

    A `spin_sdk.wit.types.Err(spin_sdk.wit.imports.rdbms_types.Error_ConnectionFailed(str))` when a connection fails.
    
    A `spin_sdk.wit.types.Err(spin_sdk.wit.imports.rdbms_types.Error_Other(str))` when some other error occurs.
    """
    return Connection.open(connection_string)

Functions

def open(connection_string: str) ‑> Connection

Open a connection with a MySQL database.

The connection_string is the MySQL URL connection string.

A Err(Error_ConnectionFailed(str)) when a connection fails.

A Err(Error_Other(str)) when some other error occurs.

Expand source code
def open(connection_string: str) -> Connection:
    """
    Open a connection with a MySQL database.
    
    The connection_string is the MySQL URL connection string.

    A `spin_sdk.wit.types.Err(spin_sdk.wit.imports.rdbms_types.Error_ConnectionFailed(str))` when a connection fails.
    
    A `spin_sdk.wit.types.Err(spin_sdk.wit.imports.rdbms_types.Error_Other(str))` when some other error occurs.
    """
    return Connection.open(connection_string)