nakagami / firebirdsql

Firebird RDBMS sql driver for Go (golang)
MIT License
224 stars 60 forks source link

Return type CHAR #99

Closed xhit closed 4 years ago

xhit commented 4 years ago

When I try to get all columns type of rows with rows.ColumnTypes() nothing is returned when column is CHAR

Example:

        types, _ := rows.ColumnTypes()
    for _, v := range types {
        log.Printf("%s", v.DatabaseTypeName())
    }