Documentation ¶
Index ¶
Constants ¶
View Source
const ( TypeString = "text" TypeCaseInsensitiveString = "citext" TypeNumber = "double precision" TypeBoolean = "boolean" TypeJSON = "jsonb" TypeTimestamp = "timestamp without time zone" TypeLocation = "geometry(Point)" TypeInteger = "integer" TypeSerial = "serial UNIQUE" TypeBigInteger = "bigint" TypeGeometry = "geometry" )
Different data types that can be saved in and loaded from postgreSQL NOTE(limouren): varchar is missing because text can replace them, see the docs here: http://www.postgresql.org/docs/9.5/static/datatype-character.html
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ExtContext ¶ added in v0.24.0
type ExtContext interface { sqlx.ExtContext GetContext(ctx context.Context, dest interface{}, query string, args ...interface{}) error QueryRowContext(ctx context.Context, query string, args ...interface{}) *sql.Row }
ExtContext is an interface for both sqlx.DB and sqlx.Tx
Source Files ¶
Click to show internal directories.
Click to hide internal directories.