How to use the raw function from mysql

Find comprehensive JavaScript mysql.raw code examples handpicked from public code repositorys.

229
230
231
232
233
234
235
236
237
238
239
240
        const query = mysql.format(`DELETE FROM ?? WHERE ?`, [table, where])
        return await this.query(query, {})
    }


    raw(rawQuery) {
        return mysql.raw(rawQuery)
    }


}

fork icon0
star icon0
watch icon1

+ 2 other calls in file