Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ColumnTypeNullable (0.28 sec)

  1. api/go1.8.txt

    pkg database/sql/driver, type RowsColumnTypeNullable interface { Close, ColumnTypeNullable, Columns, Next }
    pkg database/sql/driver, type RowsColumnTypeNullable interface, Close() error
    pkg database/sql/driver, type RowsColumnTypeNullable interface, Columns() []string
    pkg database/sql/driver, type RowsColumnTypeNullable interface, ColumnTypeNullable(int) (bool, bool)
    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

    // be true if it is known the column may be null, or false if the column is known
    // to be not nullable.
    // If the column nullability is unknown, ok should be false.
    type RowsColumnTypeNullable interface {
    	Rows
    	ColumnTypeNullable(index int) (nullable, ok bool)
    }
    
    // RowsColumnTypePrecisionScale may be implemented by [Rows]. It should return
    // the precision and scale for decimal types. If not applicable, ok should be false.
    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

    		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)
    		}
    		if prop, ok := rowsi.(driver.RowsColumnTypePrecisionScale); ok {
    			ci.precision, ci.scale, ci.hasPrecisionScale = prop.ColumnTypePrecisionScale(i)
    		}
    	}
    	return list
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top