Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ColumnTypePrecisionScale (0.15 sec)

  1. src/database/sql/sql.go

    			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
    }
    
    // Scan copies the columns in the current row into the values pointed
    // at by dest. The number of values in dest must be the same as the
    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