Jack Christensen
Jack Christensen
Can you produce a standalone case that reproduces this?
pgx sends the SQL text to the PostgreSQL server to make a prepared statement. PostgreSQL responds with the data type of the parameters. When all you have is `id =...
I'm not following all that's going on here, but I still wonder if we really want helper configuration like `AutoLoadTypeNames` on the pool or if that should really be part...
Okay, I'll comment on #2046.
> or we would need to provide a way for the pool to provide the *[]pgtype.Types information which was retrieved for the first connection Right. That's what I was thinking...
I have no idea what Snyk is doing. But every time [a Snyk issue has been raised before](https://github.com/jackc/pgx/issues?q=snyk) it has been a false positive.
Thanks, I really appreciate the offer. At the moment I don't have any way to accept donations or sponsorships, but I am now looking into GitHub Sponsors. I still need...
It took me 3 years, but I finally got around to setting up Github Sponsors.
Try latest version of pgx. Works for me. ```go package main import ( "context" "fmt" "log" "os" "github.com/jackc/pgx/v5" ) type MyStruct struct { Description string `db:"description"` Secret string `db:"-"` }...
I just reread this thread and I think I know what is happening. There is an ambiguity regarding what ignore means. Normally, there must be an exact match between the...