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
Just like the documentation indicates. But I came to two problems:
./main.go:17:24: cannot use tx (variable of type *sql.Tx) as pgx.Tx value in argument to queries.WithTx: *sql.Tx does not implement pgx.Tx (missing method Begin)
./main.go:41:20: cannot use conn (variable of type *pgx.Conn) as *sql.DB value in argument to bumpCounter
Questions
Why this error happens in the code exactly copied from the documentation?
Where the db parameter should come from? (This one maybe my skill issue :) )
Sorry about the confusion. That documentation was written when we only supported github/lib/pq. You'll need to update it to use pgx if you're using pgx.
@bbonagura9 Instead of updating the example, could you create a second one for pgx? That would be excellent.
Uh oh!
There was an error while loading. Please reload this page.
Overview
I was trying to implement a simple transaction following the documentation but it's not clear and the code return errors.
Details to reproduce
Files:
schema.sql
query.sql
sqlc.yaml
main.go
Issues encontered
Just like the documentation indicates. But I came to two problems:
./main.go:17:24: cannot use tx (variable of type *sql.Tx) as pgx.Tx value in argument to queries.WithTx: *sql.Tx does not implement pgx.Tx (missing method Begin)
./main.go:41:20: cannot use conn (variable of type *pgx.Conn) as *sql.DB value in argument to bumpCounter
Questions
Aditional info
Thanks!
The text was updated successfully, but these errors were encountered: