type database/sql.ColumnType

11 uses

	database/sql (current package)
		sql.go#L2958: func (rs *Rows) ColumnTypes() ([]*ColumnType, error) {
		sql.go#L2974: type ColumnType struct {
		sql.go#L2990: func (ci *ColumnType) Name() string {
		sql.go#L2999: func (ci *ColumnType) Length() (length int64, ok bool) {
		sql.go#L3005: func (ci *ColumnType) DecimalSize() (precision, scale int64, ok bool) {
		sql.go#L3012: func (ci *ColumnType) ScanType() reflect.Type {
		sql.go#L3018: func (ci *ColumnType) Nullable() (nullable, ok bool) {
		sql.go#L3028: func (ci *ColumnType) DatabaseTypeName() string {
		sql.go#L3032: func rowsColumnInfoSetupConnLocked(rowsi driver.Rows) []*ColumnType {
		sql.go#L3035: 	list := make([]*ColumnType, len(names))
		sql.go#L3037: 		ci := &ColumnType{