nakagami / firebirdsql

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

add type TEXT #100

Closed xhit closed 4 years ago

xhit commented 4 years ago

Earlier when a table was select with a column with data type CHAR, the database/sql standard package returned empty data type with ColumnTypes().

This change return the type TEXT for this case.

Fixes #99

nakagami commented 4 years ago

thanks! It seems good