Ah that's too bad. If I'm trying to figure out/optimize a complex query I just like to copy the quer

Ah that's too bad. If I'm trying to figure out/optimize a complex query I just like to copy the query into a separate SQL application so that I can easily edit/re-run queries on the local sqlite db. I am generating the queries using template strings at runtime, so I log the final constructed prepared statement, manually fill in the values ,then copy that to the other SQL application. It's just kind of a pain.

Could the final query be returned in the response object? Or is there some security concern there?
Was this page helpful?