Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for ColumnTypePrecisionScale (0.32 sec)

  1. api/go1.8.txt

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

    //
    //	decimal(38, 4)    (38, 4, true)
    //	int               (0, 0, false)
    //	decimal           (math.MaxInt64, math.MaxInt64, true)
    type RowsColumnTypePrecisionScale interface {
    	Rows
    	ColumnTypePrecisionScale(index int) (precision, scale int64, ok bool)
    }
    
    // Tx is a transaction.
    type Tx interface {
    	Commit() error
    	Rollback() 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