# Packages
No description provided by the author
# Functions
DeleteByColumn deletes rows from the table, given some values and the name of the column they belong to.
Exec executes a modification query (insert, update, delete, etc) and returns the number of items affected.
Float32AsInterfaceSlice adapts a slice of float32 to []interface{}.
Float64AsInterfaceSlice adapts a slice of float64 to []interface{}.
GetIntIntIndex reads two integer columns from a specified database table and returns an index built from them.
GetIntStringIndex reads an integer column and a string column from a specified database table and returns an index built from them.
GetStringIntIndex reads a string column and an integer column from a specified database table and returns an index built from them.
Int16AsInterfaceSlice adapts a slice of int16 to []interface{}.
Int32AsInterfaceSlice adapts a slice of int32 to []interface{}.
Int64AsInterfaceSlice adapts a slice of int64 to []interface{}.
Int8AsInterfaceSlice adapts a slice of int8 to []interface{}.
IntAsInterfaceSlice adapts a slice of int to []interface{}.
Query is the low-level request method for this table.
QueryOneNullThing queries for one cell of one record.
ReplaceTableName replaces all occurrences of "{TABLE}" with the table's name.
SliceFloat32List requests a columnar slice of float32s from a specified column.
SliceFloat32PtrList requests a columnar slice of float32s from a specified nullable column.
SliceFloat64List requests a columnar slice of float64s from a specified column.
SliceFloat64PtrList requests a columnar slice of float64s from a specified nullable column.
SliceInt16List requests a columnar slice of int16s from a specified column.
SliceInt16PtrList requests a columnar slice of int16s from a specified nullable column.
SliceInt32List requests a columnar slice of int32s from a specified column.
SliceInt32PtrList requests a columnar slice of int32s from a specified nullable column.
SliceInt64List requests a columnar slice of int64s from a specified column.
SliceInt64PtrList requests a columnar slice of int64s from a specified nullable column.
SliceInt8List requests a columnar slice of int8s from a specified column.
SliceInt8PtrList requests a columnar slice of int8s from a specified nullable column.
SliceIntList requests a columnar slice of ints from a specified column.
SliceIntPtrList requests a columnar slice of ints from a specified nullable column.
SliceStringList requests a columnar slice of strings from a specified column.
SliceStringPtrList requests a columnar slice of strings from a specified nullable column.
SliceUint16List requests a columnar slice of uint16s from a specified column.
SliceUint16PtrList requests a columnar slice of uint16s from a specified nullable column.
SliceUint32List requests a columnar slice of uint32s from a specified column.
SliceUint32PtrList requests a columnar slice of uint32s from a specified nullable column.
SliceUint64List requests a columnar slice of uint64s from a specified column.
SliceUint64PtrList requests a columnar slice of uint64s from a specified nullable column.
SliceUint8List requests a columnar slice of uint8s from a specified column.
SliceUint8PtrList requests a columnar slice of uint8s from a specified nullable column.
SliceUintList requests a columnar slice of uints from a specified column.
SliceUintPtrList requests a columnar slice of uints from a specified nullable column.
StringAsInterfaceSlice adapts a slice of string to []interface{}.
Uint16AsInterfaceSlice adapts a slice of uint16 to []interface{}.
Uint32AsInterfaceSlice adapts a slice of uint32 to []interface{}.
Uint64AsInterfaceSlice adapts a slice of uint64 to []interface{}.
Uint8AsInterfaceSlice adapts a slice of uint8 to []interface{}.
UintAsInterfaceSlice adapts a slice of uint to []interface{}.
UpdateFields writes certain fields of all the records matching a 'where' expression.