Documentation
    Preparing search index...

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

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

    Properties

    Properties

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