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;
}

Properties

Properties

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