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{
 |
The pages are generated with Golds v0.3.2-preview. (GOOS=darwin GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |