Documentation ¶
Index ¶
Constants ¶
View Source
const ( TypeString = "text" TypeNumber = "double precision" TypeBoolean = "boolean" TypeJSON = "jsonb" TypeTimestamp = "timestamp without time zone" TypeLocation = "geometry(Point)" TypeInteger = "integer" TypeSerial = "serial UNIQUE" )
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.4/static/datatype-character.html
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Ext ¶ added in v0.3.0
type Ext interface { sqlx.Ext Get(dest interface{}, query string, args ...interface{}) error QueryRow(query string, args ...interface{}) *sql.Row }
Ext is an interface for both sqlx.DB and sqlx.Tx
type NotSqlizer ¶
NotSqlizer generates SQL condition that negates a boolean condition
func (NotSqlizer) ToSql ¶
func (s NotSqlizer) ToSql() (sql string, args []interface{}, err error)
ToSql generates SQL for NotSqlizer
Source Files ¶
Click to show internal directories.
Click to hide internal directories.