Waddler SQL unsafe
This guide assumes familiarity with:
sql.unsafe
lets you use a client itself by providing sql string and params
const response = await sql.unsafe('select * from users where id = ?', [10]);
select * from users where id = 10;
sql.unsafe
lets you use a client itself by providing sql string and params
const response = await sql.unsafe('select * from users where id = ?', [10]);
select * from users where id = 10;