type github.com/jackc/pgconn.CommandTag
36 uses
github.com/jackc/pgconn (current package)
pgconn.go#L655: type CommandTag []byte
pgconn.go#L659: func (ct CommandTag) RowsAffected() int64 {
pgconn.go#L682: func (ct CommandTag) String() string {
pgconn.go#L687: func (ct CommandTag) Insert() bool {
pgconn.go#L698: func (ct CommandTag) Update() bool {
pgconn.go#L709: func (ct CommandTag) Delete() bool {
pgconn.go#L720: func (ct CommandTag) Select() bool {
pgconn.go#L1092: func (pgConn *PgConn) CopyTo(ctx context.Context, w io.Writer, sql string) (CommandTag, error) {
pgconn.go#L1120: var commandTag CommandTag
pgconn.go#L1141: commandTag = CommandTag(msg.CommandTag)
pgconn.go#L1152: func (pgConn *PgConn) CopyFrom(ctx context.Context, r io.Reader, sql string) (CommandTag, error) {
pgconn.go#L1179: var commandTag CommandTag
pgconn.go#L1284: commandTag = CommandTag(msg.CommandTag)
pgconn.go#L1357: commandTag: CommandTag(msg.CommandTag),
pgconn.go#L1396: commandTag CommandTag
pgconn.go#L1406: CommandTag CommandTag
pgconn.go#L1463: func (rr *ResultReader) Close() (CommandTag, error) {
pgconn.go#L1540: rr.concludeCommand(CommandTag(msg.CommandTag), nil)
pgconn.go#L1550: func (rr *ResultReader) concludeCommand(commandTag CommandTag, err error) {
github.com/jackc/pgx/v4
batch.go#L36: Exec() (pgconn.CommandTag, error)
batch.go#L60: func (br *batchResults) Exec() (pgconn.CommandTag, error) {
conn.go#L407: func (c *Conn) Exec(ctx context.Context, sql string, arguments ...interface{}) (pgconn.CommandTag, error) {
conn.go#L426: func (c *Conn) exec(ctx context.Context, sql string, arguments ...interface{}) (commandTag pgconn.CommandTag, err error) {
conn.go#L471: func (c *Conn) execSimpleProtocol(ctx context.Context, sql string, arguments []interface{}) (commandTag pgconn.CommandTag, err error) {
conn.go#L513: func (c *Conn) execParams(ctx context.Context, sd *pgconn.StatementDescription, arguments []interface{}) (pgconn.CommandTag, error) {
conn.go#L523: func (c *Conn) execPrepared(ctx context.Context, sd *pgconn.StatementDescription, arguments []interface{}) (pgconn.CommandTag, error) {
conn.go#L700: func (c *Conn) QueryFunc(ctx context.Context, sql string, args []interface{}, scans []interface{}, f func(QueryFuncRow) error) (pgconn.CommandTag, error) {
rows.go#L33: CommandTag() pgconn.CommandTag
rows.go#L103: commandTag pgconn.CommandTag
rows.go#L159: func (rows *connRows) CommandTag() pgconn.CommandTag {
tx.go#L154: Exec(ctx context.Context, sql string, arguments ...interface{}) (commandTag pgconn.CommandTag, err error)
tx.go#L157: QueryFunc(ctx context.Context, sql string, args []interface{}, scans []interface{}, f func(QueryFuncRow) error) (pgconn.CommandTag, error)
tx.go#L257: func (tx *dbTx) Exec(ctx context.Context, sql string, arguments ...interface{}) (commandTag pgconn.CommandTag, err error) {
tx.go#L288: func (tx *dbTx) QueryFunc(ctx context.Context, sql string, args []interface{}, scans []interface{}, f func(QueryFuncRow) error) (pgconn.CommandTag, error) {
tx.go#L372: func (sp *dbSavepoint) Exec(ctx context.Context, sql string, arguments ...interface{}) (commandTag pgconn.CommandTag, err error) {
tx.go#L407: func (sp *dbSavepoint) QueryFunc(ctx context.Context, sql string, args []interface{}, scans []interface{}, f func(QueryFuncRow) error) (pgconn.CommandTag, error) {
 |
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. |