Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ExecerContext (0.1 sec)

  1. src/database/sql/driver/driver.go

    //
    // If a [Conn] implements neither [ExecerContext] nor [Execer],
    // the [database/sql.DB.Exec] will first prepare a query, execute the statement,
    // and then close the statement.
    //
    // Exec may return [ErrSkip].
    //
    // Deprecated: Drivers should implement [ExecerContext] instead.
    type Execer interface {
    	Exec(query string, args []Value) (Result, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
Back to top