You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// ScanType returns a Go type suitable for scanning into using [Rows.Scan].
// If a driver does not support this property ScanType will return
// the type of an empty interface.
func (ci *ColumnType) ScanType() reflect.Type
which would indicate that maybe this library doesn't support this functionality. Can it be supported?
The text was updated successfully, but these errors were encountered:
When I run the following code, the
ScanType()
always returns an empty interfaceGo doc says
which would indicate that maybe this library doesn't support this functionality. Can it be supported?
The text was updated successfully, but these errors were encountered: