type database/sql/driver.Result

31 uses

	database/sql/driver (current package)
		driver.go#L179: 	Exec(query string, args []Value) (Result, error)
		driver.go#L193: 	ExecContext(ctx context.Context, query string, args []NamedValue) (Result, error)
		driver.go#L310: type Result interface {
		driver.go#L348: 	Exec(args []Value) (Result, error)
		driver.go#L363: 	ExecContext(ctx context.Context, args []NamedValue) (Result, error)
		driver.go#L519: var _ Result = RowsAffected(0)
		driver.go#L536: var _ Result = noRows{}

	database/sql
		ctxutil.go#L29: func ctxDriverExec(ctx context.Context, execerCtx driver.ExecerContext, execer driver.Execer, query string, nvdargs []driver.NamedValue) (driver.Result, error) {
		ctxutil.go#L63: func ctxDriverStmtExec(ctx context.Context, si driver.Stmt, nvdargs []driver.NamedValue) (driver.Result, error) {
		sql.go#L1571: 		var resi driver.Result
		sql.go#L3270: 	resi        driver.Result

	contrib.go.opencensus.io/integrations/ocsql
		driver.go#L36: 	_ driver.Result                         = &ocResult{}
		driver.go#L153: func (c ocConn) Exec(query string, args []driver.Value) (res driver.Result, err error) {
		driver.go#L194: func (c ocConn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (res driver.Result, err error) {
		driver.go#L437: 	parent  driver.Result
		driver.go#L481: func (s ocStmt) Exec(args []driver.Value) (res driver.Result, err error) {
		driver.go#L566: func (s ocStmt) ExecContext(ctx context.Context, args []driver.NamedValue) (res driver.Result, err error) {

	github.com/jackc/pgx/v4/stdlib
		sql.go#L325: func (c *Conn) ExecContext(ctx context.Context, query string, argsV []driver.NamedValue) (driver.Result, error) {
		sql.go#L410: func (s *Stmt) Exec(argsV []driver.Value) (driver.Result, error) {
		sql.go#L414: func (s *Stmt) ExecContext(ctx context.Context, argsV []driver.NamedValue) (driver.Result, error) {

	github.com/lib/pq
		conn.go#L604: func (cn *conn) simpleExec(q string) (res driver.Result, commandTag string, err error) {
		conn.go#L699: var _ driver.Result = noRows{}
		conn.go#L854: func (cn *conn) Exec(query string, args []driver.Value) (res driver.Result, err error) {
		conn.go#L1260: func (st *stmt) Exec(v []driver.Value) (res driver.Result, err error) {
		conn.go#L1321: func (cn *conn) parseComplete(commandTag string) (driver.Result, string) {
		conn.go#L1378: 	result driver.Result
		conn.go#L1410: func (rs *rows) Result() driver.Result {
		conn.go#L1760: func (cn *conn) readExecuteResponse(protocolState string) (res driver.Result, commandTag string, err error) {
		conn_go18.go#L32: func (cn *conn) ExecContext(ctx context.Context, query string, args []driver.NamedValue) (driver.Result, error) {
		copy.go#L217: func (ci *copyin) Exec(v []driver.Value) (r driver.Result, err error) {

	golang.org/x/pkgsite/internal/database
		driver.go#L73: func (c *wrapConn) ExecContext(ctx context.Context, q string, args []driver.NamedValue) (driver.Result, error) {