Error severities
const ( Efatal = "FATAL" Epanic = "PANIC" Ewarning = "WARNING" Enotice = "NOTICE" Edebug = "DEBUG" Einfo = "INFO" Elog = "LOG" )
Common error types
var ( ErrNotSupported = errors.New("pq: Unsupported command") ErrInFailedTransaction = errors.New("pq: Could not complete operation in a failed transaction") ErrSSLNotSupported = errors.New("pq: SSL is not enabled on the server") ErrSSLKeyUnknownOwnership = errors.New("pq: Could not get owner information for private key, may not be properly protected") ErrSSLKeyHasWorldPermissions = errors.New("pq: Private key has world access. Permissions should be u=rw,g=r (0640) if owned by root, or u=rw (0600), or less") ErrCouldNotDetectUsername = errors.New("pq: Could not detect default username. Please provide one explicitly") )
ErrChannelAlreadyOpen is returned from Listen when a channel is already open.
var ErrChannelAlreadyOpen = errors.New("pq: channel is already open")
ErrChannelNotOpen is returned from Unlisten when a channel is not open.
var ErrChannelNotOpen = errors.New("pq: channel is not open")
func Array(a interface{}) interface { driver.Valuer sql.Scanner }
Array returns the optimal driver.Valuer and sql.Scanner for an array or slice of any dimension.
For example:
db.Query(`SELECT * FROM t WHERE id = ANY($1)`, pq.Array([]int{235, 401})) var x []sql.NullInt64 db.QueryRow(`SELECT ARRAY[235, 401]`).Scan(pq.Array(&x))
Scanning multi-dimensional arrays is not supported. Arrays where the lower bound is not one (such as `[0:0]={1}') are not supported.
func BufferQuoteIdentifier(name string, buffer *bytes.Buffer)
BufferQuoteIdentifier satisfies the same purpose as QuoteIdentifier, but backed by a byte buffer.
func ConnectorNoticeHandler(c driver.Connector) func(*Error)
ConnectorNoticeHandler returns the currently set notice handler, if any. If the given connector is not a result of ConnectorWithNoticeHandler, nil is returned.
func ConnectorNotificationHandler(c driver.Connector) func(*Notification)
ConnectorNotificationHandler returns the currently set notification handler, if any. If the given connector is not a result of ConnectorWithNotificationHandler, nil is returned.
func CopyIn(table string, columns ...string) string
CopyIn creates a COPY FROM statement which can be prepared with Tx.Prepare(). The target table should be visible in search_path.
func CopyInSchema(schema, table string, columns ...string) string
CopyInSchema creates a COPY FROM statement which can be prepared with Tx.Prepare().
func DialOpen(d Dialer, dsn string) (_ driver.Conn, err error)
DialOpen opens a new connection to the database using a dialer.
func EnableInfinityTs(negative time.Time, positive time.Time)
EnableInfinityTs controls the handling of Postgres' "-infinity" and "infinity" "timestamp"s.
If EnableInfinityTs is not called, "-infinity" and "infinity" will return []byte("-infinity") and []byte("infinity") respectively, and potentially cause error "sql: Scan error on column index 0: unsupported driver -> Scan pair: []uint8 -> *time.Time", when scanning into a time.Time value.
Once EnableInfinityTs has been called, all connections created using this driver will decode Postgres' "-infinity" and "infinity" for "timestamp", "timestamp with time zone" and "date" types to the predefined minimum and maximum times, respectively. When encoding time.Time values, any time which equals or precedes the predefined minimum time will be encoded to "-infinity". Any values at or past the maximum time will similarly be encoded to "infinity".
If EnableInfinityTs is called with negative >= positive, it will panic. Calling EnableInfinityTs after a connection has been established results in undefined behavior. If EnableInfinityTs is called more than once, it will panic.
func FormatTimestamp(t time.Time) []byte
FormatTimestamp formats t into Postgres' text format for timestamps.
func NoticeHandler(c driver.Conn) func(*Error)
NoticeHandler returns the notice handler on the given connection, if any. A runtime panic occurs if c is not a pq connection. This is rarely used directly, use ConnectorNoticeHandler and ConnectorWithNoticeHandler instead.
func Open(dsn string) (_ driver.Conn, err error)
Open opens a new connection to the database. dsn is a connection string. Most users should only use it through database/sql package from the standard library.
func ParseTimestamp(currentLocation *time.Location, str string) (time.Time, error)
ParseTimestamp parses Postgres' text format. It returns a time.Time in currentLocation iff that time's offset agrees with the offset sent from the Postgres server. Otherwise, ParseTimestamp returns a time.Time with the fixed offset offset provided by the Postgres server.
func ParseURL(url string) (string, error)
ParseURL no longer needs to be used by clients of this library since supplying a URL as a connection string to sql.Open() is now supported:
sql.Open("postgres", "postgres://bob:secret@1.2.3.4:5432/mydb?sslmode=verify-full")
It remains exported here for backwards-compatibility.
ParseURL converts a url to a connection string for driver.Open. Example:
"postgres://bob:secret@1.2.3.4:5432/mydb?sslmode=verify-full"
converts to:
"user=bob password=secret host=1.2.3.4 port=5432 dbname=mydb sslmode=verify-full"
A minimal example:
"postgres://"
This will be blank, causing driver.Open to use all of the defaults
func QuoteIdentifier(name string) string
QuoteIdentifier quotes an "identifier" (e.g. a table or a column name) to be used as part of an SQL statement. For example:
tblname := "my_table" data := "my_data" quoted := pq.QuoteIdentifier(tblname) err := db.Exec(fmt.Sprintf("INSERT INTO %s VALUES ($1)", quoted), data)
Any double quotes in name will be escaped. The quoted identifier will be case sensitive when used in a query. If the input string contains a zero byte, the result will be truncated immediately before it.
func QuoteLiteral(literal string) string
QuoteLiteral quotes a 'literal' (e.g. a parameter, often used to pass literal to DDL and other statements that do not accept parameters) to be used as part of an SQL statement. For example:
exp_date := pq.QuoteLiteral("2023-01-05 15:00:00Z") err := db.Exec(fmt.Sprintf("CREATE ROLE my_user VALID UNTIL %s", exp_date))
Any single quotes in name will be escaped. Any backslashes (i.e. "\") will be replaced by two backslashes (i.e. "\\") and the C-style escape identifier that PostgreSQL provides ('E') will be prepended to the string.
func RegisterGSSProvider(newGssArg NewGSSFunc)
RegisterGSSProvider registers a GSS authentication provider. For example, if you need to use Kerberos to authenticate with your server, add this to your main package:
import "github.com/lib/pq/auth/kerberos" func init() { pq.RegisterGSSProvider(func() (pq.GSS, error) { return kerberos.NewGSS() }) }
func SetNoticeHandler(c driver.Conn, handler func(*Error))
SetNoticeHandler sets the given notice handler on the given connection. A runtime panic occurs if c is not a pq connection. A nil handler may be used to unset it. This is rarely used directly, use ConnectorNoticeHandler and ConnectorWithNoticeHandler instead.
Note: Notice handlers are executed synchronously by pq meaning commands won't continue to be processed until the handler returns.
func SetNotificationHandler(c driver.Conn, handler func(*Notification))
SetNotificationHandler sets the given notification handler on the given connection. A runtime panic occurs if c is not a pq connection. A nil handler may be used to unset it.
Note: Notification handlers are executed synchronously by pq meaning commands won't continue to be processed until the handler returns.
ArrayDelimiter may be optionally implemented by driver.Valuer or sql.Scanner to override the array delimiter used by GenericArray.
type ArrayDelimiter interface { // ArrayDelimiter returns the delimiter character(s) for this element's type. ArrayDelimiter() string }
BoolArray represents a one-dimensional array of the PostgreSQL boolean type.
type BoolArray []bool
func (a *BoolArray) Scan(src interface{}) error
Scan implements the sql.Scanner interface.
func (a BoolArray) Value() (driver.Value, error)
Value implements the driver.Valuer interface.
ByteaArray represents a one-dimensional array of the PostgreSQL bytea type.
type ByteaArray [][]byte
func (a *ByteaArray) Scan(src interface{}) error
Scan implements the sql.Scanner interface.
func (a ByteaArray) Value() (driver.Value, error)
Value implements the driver.Valuer interface. It uses the "hex" format which is only supported on PostgreSQL 9.0 or newer.
Connector represents a fixed configuration for the pq driver with a given name. Connector satisfies the database/sql/driver Connector interface and can be used to create any number of DB Conn's via the database/sql OpenDB function.
See https://golang.org/pkg/database/sql/driver/#Connector. See https://golang.org/pkg/database/sql/#OpenDB.
type Connector struct {
// contains filtered or unexported fields
}
func NewConnector(dsn string) (*Connector, error)
NewConnector returns a connector for the pq driver in a fixed configuration with the given dsn. The returned connector can be used to create any number of equivalent Conn's. The returned connector is intended to be used with database/sql.OpenDB.
See https://golang.org/pkg/database/sql/driver/#Connector. See https://golang.org/pkg/database/sql/#OpenDB.
▹ Example
func (c *Connector) Connect(ctx context.Context) (driver.Conn, error)
Connect returns a connection to the database using the fixed configuration of this Connector. Context is not used.
func (c *Connector) Dialer(dialer Dialer)
Dialer allows change the dialer used to open connections.
func (c *Connector) Driver() driver.Driver
Driver returns the underlying driver of this Connector.
Dialer is the dialer interface. It can be used to obtain more control over how pq creates network connections.
type Dialer interface { Dial(network, address string) (net.Conn, error) DialTimeout(network, address string, timeout time.Duration) (net.Conn, error) }
DialerContext is the context-aware dialer interface.
type DialerContext interface { DialContext(ctx context.Context, network, address string) (net.Conn, error) }
Driver is the Postgres database driver.
type Driver struct{}
func (d Driver) Open(name string) (driver.Conn, error)
Open opens a new connection to the database. name is a connection string. Most users should only use it through database/sql package from the standard library.
Error represents an error communicating with the server.
See http://www.postgresql.org/docs/current/static/protocol-error-fields.html for details of the fields
type Error struct { Severity string Code ErrorCode Message string Detail string Hint string Position string InternalPosition string InternalQuery string Where string Schema string Table string Column string DataTypeName string Constraint string File string Line string Routine string }
func (err *Error) Error() string
func (err *Error) Fatal() bool
Fatal returns true if the Error Severity is fatal.
func (err *Error) Get(k byte) (v string)
Get implements the legacy PGError interface. New code should use the fields of the Error struct directly.
func (err *Error) SQLState() string
SQLState returns the SQLState of the error.
ErrorClass is only the class part of an error code.
type ErrorClass string
func (ec ErrorClass) Name() string
Name returns the condition name of an error class. It is equivalent to the condition name of the "standard" error code (i.e. the one having the last three characters "000").
ErrorCode is a five-character error code.
type ErrorCode string
func (ec ErrorCode) Class() ErrorClass
Class returns the error class, e.g. "28".
See http://www.postgresql.org/docs/9.3/static/errcodes-appendix.html for details.
func (ec ErrorCode) Name() string
Name returns a more human friendly rendering of the error code, namely the "condition name".
See http://www.postgresql.org/docs/9.3/static/errcodes-appendix.html for details.
EventCallbackType is the event callback type. See also ListenerEventType constants' documentation.
type EventCallbackType func(event ListenerEventType, err error)
Float32Array represents a one-dimensional array of the PostgreSQL double precision type.
type Float32Array []float32
func (a *Float32Array) Scan(src interface{}) error
Scan implements the sql.Scanner interface.
func (a Float32Array) Value() (driver.Value, error)
Value implements the driver.Valuer interface.
Float64Array represents a one-dimensional array of the PostgreSQL double precision type.
type Float64Array []float64
func (a *Float64Array) Scan(src interface{}) error
Scan implements the sql.Scanner interface.
func (a Float64Array) Value() (driver.Value, error)
Value implements the driver.Valuer interface.
GSS provides GSSAPI authentication (e.g., Kerberos).
type GSS interface { GetInitToken(host string, service string) ([]byte, error) GetInitTokenFromSpn(spn string) ([]byte, error) Continue(inToken []byte) (done bool, outToken []byte, err error) }
GenericArray implements the driver.Valuer and sql.Scanner interfaces for an array or slice of any dimension.
type GenericArray struct{ A interface{} }
func (a GenericArray) Scan(src interface{}) error
Scan implements the sql.Scanner interface.
func (a GenericArray) Value() (driver.Value, error)
Value implements the driver.Valuer interface.
Int32Array represents a one-dimensional array of the PostgreSQL integer types.
type Int32Array []int32
func (a *Int32Array) Scan(src interface{}) error
Scan implements the sql.Scanner interface.
func (a Int32Array) Value() (driver.Value, error)
Value implements the driver.Valuer interface.
Int64Array represents a one-dimensional array of the PostgreSQL integer types.
type Int64Array []int64
func (a *Int64Array) Scan(src interface{}) error
Scan implements the sql.Scanner interface.
func (a Int64Array) Value() (driver.Value, error)
Value implements the driver.Valuer interface.
Listener provides an interface for listening to notifications from a PostgreSQL database. For general usage information, see section "Notifications".
Listener can safely be used from concurrently running goroutines.
type Listener struct { // Channel for receiving notifications from the database. In some cases a // nil value will be sent. See section "Notifications" above. Notify chan *Notification // contains filtered or unexported fields }
func NewDialListener(d Dialer, name string, minReconnectInterval time.Duration, maxReconnectInterval time.Duration, eventCallback EventCallbackType) *Listener
NewDialListener is like NewListener but it takes a Dialer.
func NewListener(name string, minReconnectInterval time.Duration, maxReconnectInterval time.Duration, eventCallback EventCallbackType) *Listener
NewListener creates a new database connection dedicated to LISTEN / NOTIFY.
name should be set to a connection string to be used to establish the database connection (see section "Connection String Parameters" above).
minReconnectInterval controls the duration to wait before trying to re-establish the database connection after connection loss. After each consecutive failure this interval is doubled, until maxReconnectInterval is reached. Successfully completing the connection establishment procedure resets the interval back to minReconnectInterval.
The last parameter eventCallback can be set to a function which will be called by the Listener when the state of the underlying database connection changes. This callback will be called by the goroutine which dispatches the notifications over the Notify channel, so you should try to avoid doing potentially time-consuming operations from the callback.
func (l *Listener) Close() error
Close disconnects the Listener from the database and shuts it down. Subsequent calls to its methods will return an error. Close returns an error if the connection has already been closed.
func (l *Listener) Listen(channel string) error
Listen starts listening for notifications on a channel. Calls to this function will block until an acknowledgement has been received from the server. Note that Listener automatically re-establishes the connection after connection loss, so this function may block indefinitely if the connection can not be re-established.
Listen will only fail in three conditions:
The channel name is case-sensitive.
func (l *Listener) NotificationChannel() <-chan *Notification
NotificationChannel returns the notification channel for this listener. This is the same channel as Notify, and will not be recreated during the life time of the Listener.
func (l *Listener) Ping() error
Ping the remote server to make sure it's alive. Non-nil return value means that there is no active connection.
func (l *Listener) Unlisten(channel string) error
Unlisten removes a channel from the Listener's channel list. Returns ErrChannelNotOpen if the Listener is not listening on the specified channel. Returns immediately with no error if there is no connection. Note that you might still get notifications for this channel even after Unlisten has returned.
The channel name is case-sensitive.
func (l *Listener) UnlistenAll() error
UnlistenAll removes all channels from the Listener's channel list. Returns immediately with no error if there is no connection. Note that you might still get notifications for any of the deleted channels even after UnlistenAll has returned.
ListenerConn is a low-level interface for waiting for notifications. You should use Listener instead.
type ListenerConn struct {
// contains filtered or unexported fields
}
func NewListenerConn(name string, notificationChan chan<- *Notification) (*ListenerConn, error)
NewListenerConn creates a new ListenerConn. Use NewListener instead.
func (l *ListenerConn) Close() error
Close closes the connection.
func (l *ListenerConn) Err() error
Err returns the reason the connection was closed. It is not safe to call this function until l.Notify has been closed.
func (l *ListenerConn) ExecSimpleQuery(q string) (executed bool, err error)
ExecSimpleQuery executes a "simple query" (i.e. one with no bindable parameters) on the connection. The possible return values are:
After a call to ExecSimpleQuery has returned an executed=false value, the connection has either been closed or will be closed shortly thereafter, and all subsequently executed queries will return an error.
func (l *ListenerConn) Listen(channel string) (bool, error)
Listen sends a LISTEN query to the server. See ExecSimpleQuery.
func (l *ListenerConn) Ping() error
Ping the remote server to make sure it's alive. Non-nil error means the connection has failed and should be abandoned.
func (l *ListenerConn) Unlisten(channel string) (bool, error)
Unlisten sends an UNLISTEN query to the server. See ExecSimpleQuery.
func (l *ListenerConn) UnlistenAll() (bool, error)
UnlistenAll sends an `UNLISTEN *` query to the server. See ExecSimpleQuery.
ListenerEventType is an enumeration of listener event types.
type ListenerEventType int
const ( // ListenerEventConnected is emitted only when the database connection // has been initially initialized. The err argument of the callback // will always be nil. ListenerEventConnected ListenerEventType = iota // ListenerEventDisconnected is emitted after a database connection has // been lost, either because of an error or because Close has been // called. The err argument will be set to the reason the database // connection was lost. ListenerEventDisconnected // ListenerEventReconnected is emitted after a database connection has // been re-established after connection loss. The err argument of the // callback will always be nil. After this event has been emitted, a // nil pq.Notification is sent on the Listener.Notify channel. ListenerEventReconnected // ListenerEventConnectionAttemptFailed is emitted after a connection // to the database was attempted, but failed. The err argument will be // set to an error describing why the connection attempt did not // succeed. ListenerEventConnectionAttemptFailed )
NewGSSFunc creates a GSS authentication provider, for use with RegisterGSSProvider.
type NewGSSFunc func() (GSS, error)
NoticeHandlerConnector wraps a regular connector and sets a notice handler on it.
type NoticeHandlerConnector struct { driver.Connector // contains filtered or unexported fields }
func ConnectorWithNoticeHandler(c driver.Connector, handler func(*Error)) *NoticeHandlerConnector
ConnectorWithNoticeHandler creates or sets the given handler for the given connector. If the given connector is a result of calling this function previously, it is simply set on the given connector and returned. Otherwise, this returns a new connector wrapping the given one and setting the notice handler. A nil notice handler may be used to unset it.
The returned connector is intended to be used with database/sql.OpenDB.
Note: Notice handlers are executed synchronously by pq meaning commands won't continue to be processed until the handler returns.
▹ Example
func (n *NoticeHandlerConnector) Connect(ctx context.Context) (driver.Conn, error)
Connect calls the underlying connector's connect method and then sets the notice handler.
Notification represents a single notification from the database.
type Notification struct { // Process ID (PID) of the notifying postgres backend. BePid int // Name of the channel the notification was sent on. Channel string // Payload, or the empty string if unspecified. Extra string }
NotificationHandlerConnector wraps a regular connector and sets a notification handler on it.
type NotificationHandlerConnector struct { driver.Connector // contains filtered or unexported fields }
func ConnectorWithNotificationHandler(c driver.Connector, handler func(*Notification)) *NotificationHandlerConnector
ConnectorWithNotificationHandler creates or sets the given handler for the given connector. If the given connector is a result of calling this function previously, it is simply set on the given connector and returned. Otherwise, this returns a new connector wrapping the given one and setting the notification handler. A nil notification handler may be used to unset it.
The returned connector is intended to be used with database/sql.OpenDB.
Note: Notification handlers are executed synchronously by pq meaning commands won't continue to be processed until the handler returns.
func (n *NotificationHandlerConnector) Connect(ctx context.Context) (driver.Conn, error)
Connect calls the underlying connector's connect method and then sets the notification handler.
NullTime represents a time.Time that may be null. NullTime implements the sql.Scanner interface so it can be used as a scan destination, similar to sql.NullString.
type NullTime struct { Time time.Time Valid bool // Valid is true if Time is not NULL }
func (nt *NullTime) Scan(value interface{}) error
Scan implements the Scanner interface.
func (nt NullTime) Value() (driver.Value, error)
Value implements the driver Valuer interface.
PGError is an interface used by previous versions of pq. It is provided only to support legacy code. New code should use the Error type.
type PGError interface { Error() string Fatal() bool Get(k byte) (v string) }
StringArray represents a one-dimensional array of the PostgreSQL character types.
type StringArray []string
func (a *StringArray) Scan(src interface{}) error
Scan implements the sql.Scanner interface.
func (a StringArray) Value() (driver.Value, error)
Value implements the driver.Valuer interface.
Name | Synopsis |
---|---|
.. | |
example | |
listen | Package listen is a self-contained Go program which uses the LISTEN / NOTIFY mechanism to avoid polling the database while waiting for more work to arrive. |
hstore | |
oid | Package oid contains OID constants as defined by the Postgres server. |
scram | Package scram implements a SCRAM-{SHA-1,etc} client per RFC5802. |