github.com/jackc/pgx/v4.Conn.preparedStatements (field)
9 uses
github.com/jackc/pgx/v4 (current package)
conn.go#L63: preparedStatements map[string]*pgconn.StatementDescription
conn.go#L230: c.preparedStatements = make(map[string]*pgconn.StatementDescription)
conn.go#L271: if sd, ok = c.preparedStatements[name]; ok && sd.SQL == sql {
conn.go#L290: c.preparedStatements[name] = sd
conn.go#L298: delete(c.preparedStatements, name)
conn.go#L440: if sd, ok := c.preparedStatements[sql]; ok {
conn.go#L592: sd, ok := c.preparedStatements[sql]
conn.go#L756: if _, ok := c.preparedStatements[bi.query]; ok {
conn.go#L783: sd := c.preparedStatements[bi.query]
![]() |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |