Right now, I can only log statements like:
SELECT * FROM users WHERE id = ?;
Is there a way to log SQLite queries after their parameters have been bound? So the queries look more like:
SELECT * FROM users WHERE id = '3';
Right now, I can only log statements like:
SELECT * FROM users WHERE id = ?;
Is there a way to log SQLite queries after their parameters have been bound? So the queries look more like:
SELECT * FROM users WHERE id = '3';