Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ColumnTypeNullable (0.67 sec)

  1. 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