get ith column data type
(i int)
| 470 | |
| 471 | // get ith column data type |
| 472 | func (b *Buffer) getColType(i int) int { |
| 473 | return b.colType[i] |
| 474 | } |
| 475 | |
| 476 | // autoDetectColumnType intelligently detects if a column contains numeric, date, or string data |
| 477 | // Returns colTypeDate for dates, colTypeFloat for numbers, colTypeStr for strings |
no outgoing calls