Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for QueryRow (0.1 sec)

  1. doc/next/6-stdlib/99-minor/database/sql/64707.md

    Errors returned by [driver.Valuer] implementations are now wrapped for
    improved error handling during operations like [DB.Query], [DB.Exec],
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 160 bytes
    - Viewed (0)
  2. src/database/sql/driver/types.go

    // Errors returned by the [Value] method are wrapped by the database/sql package.
    // This allows callers to use [errors.Is] for precise error handling after operations
    // like [database/sql.Query], [database/sql.Exec], or [database/sql.QueryRow].
    //
    // Types implementing Valuer interface are able to convert
    // themselves to a driver [Value].
    type Valuer interface {
    	// Value returns a driver Value.
    	// Value must not panic.
    	Value() (Value, error)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 16:30:20 UTC 2024
    - 8.8K bytes
    - Viewed (0)
Back to top