@fermyon/spin-sdk
    Preparing search index...

    Interface MysqlConnection

    Interface representing a MySQL connection with methods for querying and executing statements. MysqlConnection

    interface MysqlConnection {
        execute: (statement: string, params: RdbmsParameterValue[]) => number;
        query: (statement: string, params: RdbmsParameterValue[]) => RdbmsRowSet;
    }
    Index

    Properties

    Properties

    execute: (statement: string, params: RdbmsParameterValue[]) => number
    query: (statement: string, params: RdbmsParameterValue[]) => RdbmsRowSet