You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This feature would be very useful for debugging, and would help to improve the quality of
sqlc itself.
I am getting a strange message "incomplete input" (using sqlite in go) from a query with parameters, and it is really difficult to find out what is really happend without his feature.
What database engines need to be changed?
SQLite
What programming language backends need to be changed?
Go
The text was updated successfully, but these errors were encountered:
I believe, the respective SQL driver handles the query formation and execution. I often log out the arguments/params of the query before the actual query at the debug level.
Maybe parsing the query string and populating the $1 or ? with the respective arguments can form the query beforehand.
What do you want to change?
This feature would be very useful for debugging, and would help to improve the quality of
sqlc itself.
I am getting a strange message "incomplete input" (using sqlite in go) from a query with parameters, and it is really difficult to find out what is really happend without his feature.
What database engines need to be changed?
SQLite
What programming language backends need to be changed?
Go
The text was updated successfully, but these errors were encountered: