It would be nice if the sql logger would quote params in the printed queries to make it easier to copy/paste into a CLI client for closer optimization/examination.
Eg instead of:
sql SELECT ...
FROM foo
WHERE foo.name = bob
sql Found 1 matching rows
it would print:
sql SELECT ...
FROM foo
WHERE foo.name = "bob"
sql Found 1 matching rows
It would be nice if the sql logger would quote params in the printed queries to make it easier to copy/paste into a CLI client for closer optimization/examination.
Eg instead of:
sql SELECT ...
FROM
fooWHERE
foo.name= bobsql Found 1 matching rows
it would print:
sql SELECT ...
FROM
fooWHERE
foo.name= "bob"sql Found 1 matching rows