github.com/jackc/pgconn.StatementDescription.Name (field)

11 uses

	github.com/jackc/pgconn (current package)
		pgconn.go#L731: 	Name      string
		pgconn.go#L766: 	psd := &StatementDescription{Name: name, SQL: sql}

	github.com/jackc/pgconn/stmtcache
		lru.go#L118: 		return c.conn.Exec(ctx, fmt.Sprintf("deallocate %s", psd.Name)).Close()
		lru.go#L154: 		return c.conn.Exec(ctx, fmt.Sprintf("deallocate %s", psd.Name)).Close()

	github.com/jackc/pgx/v4
		conn.go#L529: 	result := c.pgConn.ExecPrepared(ctx, sd.Name, c.eqb.paramValues, c.eqb.paramFormats, c.eqb.resultFormats).Read()
		conn.go#L670: 		rows.resultReader = c.pgConn.ExecPrepared(ctx, sd.Name, c.eqb.paramValues, c.eqb.paramFormats, resultFormats)
		conn.go#L813: 		if sd.Name == "" {
		conn.go#L816: 			batch.ExecPrepared(sd.Name, c.eqb.paramValues, c.eqb.paramFormats, c.eqb.resultFormats)

	github.com/jackc/pgx/v4/stdlib
		sql.go#L403: 	return s.conn.conn.Deallocate(ctx, s.sd.Name)
		sql.go#L415: 	return s.conn.ExecContext(ctx, s.sd.Name, argsV)
		sql.go#L423: 	return s.conn.QueryContext(ctx, s.sd.Name, argsV)