package
0.0.0-20241123141403-e7b9dc6866d0
Repository: https://github.com/unix-world/smartgoext.git
Documentation: pkg.go.dev

# README

types

The types package provides some useful types which implement the sql.Scanner and driver.Valuer interfaces, suitable for use as scan and value targets with database/sql.

# Structs

NullJSONText represents a JSONText that may be null.

# Type aliases

BitBool is an implementation of a bool for the MySQL type BIT(1).
GzippedText is a []byte which transparently gzips data being submitted to a database and ungzips data being Scanned from a database.
JSONText is a json.RawMessage, which is a []byte underneath.