Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for RowsColumnTypeLength (0.56 sec)

  1. api/go1.8.txt

    pkg database/sql/driver, type RowsColumnTypeLength interface { Close, ColumnTypeLength, Columns, Next }
    pkg database/sql/driver, type RowsColumnTypeLength interface, Close() error
    pkg database/sql/driver, type RowsColumnTypeLength interface, Columns() []string
    pkg database/sql/driver, type RowsColumnTypeLength interface, ColumnTypeLength(int) (int64, bool)
    pkg database/sql/driver, type RowsColumnTypeLength interface, Next([]Value) error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Dec 21 05:25:57 UTC 2016
    - 16.3K bytes
    - Viewed (0)
  2. src/database/sql/driver/driver.go

    // If the driver knows how to describe the types present in the returned result
    // it should implement the following interfaces: [RowsColumnTypeScanType],
    // [RowsColumnTypeDatabaseTypeName], [RowsColumnTypeLength], [RowsColumnTypeNullable],
    // and [RowsColumnTypePrecisionScale]. A given row value may also return a [Rows]
    // type, which may represent a database cursor value.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 09:04:12 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. src/database/sql/sql.go

    			ci.scanType = reflect.TypeFor[any]()
    		}
    		if prop, ok := rowsi.(driver.RowsColumnTypeDatabaseTypeName); ok {
    			ci.databaseType = prop.ColumnTypeDatabaseTypeName(i)
    		}
    		if prop, ok := rowsi.(driver.RowsColumnTypeLength); ok {
    			ci.length, ci.hasLength = prop.ColumnTypeLength(i)
    		}
    		if prop, ok := rowsi.(driver.RowsColumnTypeNullable); ok {
    			ci.nullable, ci.hasNullable = prop.ColumnTypeNullable(i)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/internal/stdlib/manifest.go

    		{"QueryerContext", Type, 8},
    		{"Result", Type, 0},
    		{"ResultNoRows", Var, 0},
    		{"Rows", Type, 0},
    		{"RowsAffected", Type, 0},
    		{"RowsColumnTypeDatabaseTypeName", Type, 8},
    		{"RowsColumnTypeLength", Type, 8},
    		{"RowsColumnTypeNullable", Type, 8},
    		{"RowsColumnTypePrecisionScale", Type, 8},
    		{"RowsColumnTypeScanType", Type, 8},
    		{"RowsNextResultSet", Type, 8},
    		{"SessionResetter", Type, 10},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 534.2K bytes
    - Viewed (0)
Back to top