github.com/jackc/pgx/v4.Conn.pgConn (field)
26 uses
github.com/jackc/pgx/v4 (current package)
conn.go#L61: pgConn *pgconn.PgConn
conn.go#L222: c.pgConn, err = pgconn.ConnectConfig(ctx, &config.Config)
conn.go#L236: c.stmtcache = c.config.BuildStatementCache(c.pgConn)
conn.go#L255: err := c.pgConn.Close(ctx)
conn.go#L284: sd, err = c.pgConn.Prepare(ctx, name, sql, nil)
conn.go#L299: _, err := c.pgConn.Exec(ctx, "deallocate "+quoteIdentifier(name)).ReadAll()
conn.go#L319: err := c.pgConn.WaitForNotification(ctx)
conn.go#L328: return c.pgConn.IsClosed()
conn.go#L338: c.pgConn.Close(ctx)
conn.go#L349: if c.pgConn != nil && c.pgConn.PID() != 0 {
conn.go#L350: data["pid"] = c.pgConn.PID()
conn.go#L394: func (c *Conn) PgConn() *pgconn.PgConn { return c.pgConn }
conn.go#L479: mrr := c.pgConn.Exec(ctx, sql)
conn.go#L519: result := c.pgConn.ExecParams(ctx, sd.SQL, c.eqb.paramValues, sd.ParamOIDs, c.eqb.paramFormats, c.eqb.resultFormats).Read()
conn.go#L529: result := c.pgConn.ExecPrepared(ctx, sd.Name, c.eqb.paramValues, c.eqb.paramFormats, c.eqb.resultFormats).Read()
conn.go#L601: mrr := c.pgConn.Exec(ctx, sql)
conn.go#L624: sd, err = c.pgConn.Prepare(ctx, "", sql, nil)
conn.go#L668: rows.resultReader = c.pgConn.ExecParams(ctx, sql, c.eqb.paramValues, sd.ParamOIDs, c.eqb.paramFormats, resultFormats)
conn.go#L670: rows.resultReader = c.pgConn.ExecPrepared(ctx, sd.Name, c.eqb.paramValues, c.eqb.paramFormats, resultFormats)
conn.go#L743: mrr := c.pgConn.Exec(ctx, sb.String())
conn.go#L767: stmtCache = stmtcache.New(c.pgConn, stmtcache.ModeDescribe, len(distinctUnpreparedQueries))
conn.go#L820: mrr := c.pgConn.ExecBatch(ctx, batch)
conn.go#L832: if c.pgConn.ParameterStatus("standard_conforming_strings") != "on" {
conn.go#L836: if c.pgConn.ParameterStatus("client_encoding") != "UTF8" {
copy_from.go#L150: commandTag, err := ct.conn.pgConn.CopyFrom(ctx, r, fmt.Sprintf("copy %s ( %s ) from stdin binary;", quotedTableName, quotedColumnNames))
 |
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. |