jet
jet copied to clipboard
Jet is a super-flexible and lightweight SQL interface for Go
This is a great lightweight framework, but I wish it had the ability to read one row at a time. I have some larger queries that I can't afford to...
https://github.com/eaigner/jet/blob/ae59b2cccfe3fa2b9fea87ccc0fa3d8b7d89bd84/query.go#L72 In the case of a transaction, jet always creates a prepared statement but never deallocate them. It looks like postgres automatically clears prepared statement when the session is reset,...
Upacking to a struct like this ``` type Result struct { *TypeB Name string } ``` Results in a reflection error
Experienced a prod issue brought on by too many active prepared stmts. This driver was creating a prepared stmt for pretty much every request, this PR does a couple of...