# Functions

Append appends the row to the dataframe, using the converters to convert the scanned value into a value that can be put into a data.Frame.
DefaultConverterFunc assumes that the scanned value, in, is already a type that can be put into a dataframe.
FrameFromRows returns a new Frame populated with the data from rows.
MakeScanRow creates a new scan row given the column types and names.
NewDefaultConverter creates a Converter that assumes that the value is scannable into a String, and placed into the dataframe as a nullable string.
NewFrame creates a new data.Frame with empty fields given the columns and converters.
NewScanRow creates a new ScanRow with a length of `length`.
StringFrameConverter creates a FrameConverter from a StringConverter.
ToConverters creates a slice of Converters from a slice of StringConverters.

# Constants

No description provided by the author

# Variables

IntOrFloatToNullableFloat64 returns an error if the input is not a variation of int or float.
NullBoolConverter creates a *bool using the scan type of `sql.NullBool`.
NullConverters is a map of data type names (from reflect.TypeOf(...).String()) to converters Converters supplied here are used as defaults for fields that do not have a supplied Converter.
NullDecimalConverter creates a *float64 using the scan type of `sql.NullFloat64`.
NullInt32Converter creates a *int32 using the scan type of `sql.NullInt32`.
NullInt64Converter creates a *int64 using the scan type of `sql.NullInt64`.
NullStringConverter creates a *string using the scan type of `sql.NullString`.
NullTimeConverter creates a *time.time using the scan type of `sql.NullTime`.
TimeToNullableTime returns an error if the input is not a time.

# Structs

Converter is used to convert known types returned in sql.Row to a type usable in a dataframe.
No description provided by the author
FrameConverter defines how to convert the scanned value into a value that can be put into a dataframe (OutputFieldType).
No description provided by the author
A ScanRow is a container for SQL metadata for a single row.
StringConverter can be used to store types not supported by a Frame into a *string.
StringFieldReplacer is used to replace a *string Field in a Frame.

# Interfaces

No description provided by the author