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
I am attempting to use Goqu to create a large set of queries. These queries will be selected based on the context of a request. I would also like to "prepare" these queries with the standard sql/db module. For me to do this I need Goqu to actually produce SQL statements with the bind variable placeholders. For example SELECT * FROM table WHERE value = $1.
Is this currently possible or will '$1' always be quoted in the resulting Query?
The text was updated successfully, but these errors were encountered:
Hello there,
I am attempting to use Goqu to create a large set of queries. These queries will be selected based on the context of a request. I would also like to "prepare" these queries with the standard
sql/db
module. For me to do this I need Goqu to actually produce SQL statements with the bind variable placeholders. For exampleSELECT * FROM table WHERE value = $1
.Is this currently possible or will '$1' always be quoted in the resulting Query?
The text was updated successfully, but these errors were encountered: