libpqxx
The C++ client library for PostgreSQL
|
Connection to a database. More...
Public Member Functions | |
connection (char const options[]) | |
Connect to a database, using options string. | |
connection (zview options) | |
Connect to a database, using options string. | |
connection (connection &&rhs) | |
Move constructor. | |
connection & | operator= (connection &&rhs) |
Move assignment. | |
connection (connection const &)=delete | |
connection & | operator= (connection const &)=delete |
bool PQXX_PURE | is_open () const noexcept |
Is this connection open at the moment? | |
void | process_notice (char const[]) noexcept |
Invoke notice processor function. The message should end in newline. | |
void | process_notice (zview) noexcept |
Invoke notice processor function. Newline at end is recommended. | |
void | trace (std::FILE *) noexcept |
Enable tracing to a given output stream, or nullptr to disable. | |
Connection properties | |
These are probably not of great interest, since most are derived from information supplied by the client program itself, but they are included for completeness. The connection needs to be currently active for these to work. | |
char const * | dbname () const |
Name of the database to which we're connected, if any. | |
char const * | username () const |
Database user ID under which we are connected, if any. | |
char const * | hostname () const |
Database server address, if given. | |
char const * | port () const |
Server port number on which we are connected to the database. | |
int PQXX_PURE | backendpid () const &noexcept |
Process ID for backend process, or 0 if inactive. | |
int PQXX_PURE | sock () const &noexcept |
Socket currently used for connection, or -1 for none. | |
int PQXX_PURE | protocol_version () const noexcept |
What version of the PostgreSQL protocol is this connection using? | |
int PQXX_PURE | server_version () const noexcept |
What version of the PostgreSQL server are we connected to? | |
Text encoding | |
std::string | get_client_encoding () const |
Get client-side character encoding, by name. | |
void | set_client_encoding (zview encoding) & |
Set client-side character encoding, by name. | |
void | set_client_encoding (char const encoding[]) & |
Set client-side character encoding, by name. | |
int | encoding_id () const |
Get the connection's encoding, as a PostgreSQL-defined code. | |
template<typename TYPE > | |
void | set_session_var (std::string_view var, TYPE const &value) & |
Set one of the session variables to a new value. | |
std::string | get_var (std::string_view var) |
Read currently applicable value of a variable. | |
template<typename TYPE > | |
TYPE | get_var_as (std::string_view var) |
Read currently applicable value of a variable. | |
Password encryption | |
Use this when setting a new password for the user if password encryption is enabled. Inputs are the SQL name for the user for whom you with to encrypt a password; the plaintext password; and the hash algorithm. The algorithm must be one of "md5", "scram-sha-256" (introduced in PostgreSQL 10), or
Thus you can change a user's password with: {
}
std::string encrypt_password(zview user, zview password, zview algorithm) Encrypt a password for a given user. Definition connection.hxx:748 result exec0(zview query, std::string_view desc) Execute command, which should return zero rows of data. Definition transaction_base.hxx:389 constexpr connection & conn() const noexcept The connection in which this transaction lives. Definition transaction_base.hxx:1017 Interface definition (and common code) for "transaction" classes. Definition transaction_base.hxx:151 When building this against a libpq older than version 10, this will use an older function which only supports md5. In that case, requesting a different algorithm than md5 will result in a feature_not_supported exception. | |
std::string | encrypt_password (zview user, zview password, zview algorithm) |
Encrypt a password for a given user. | |
std::string | encrypt_password (char const user[], char const password[], char const *algorithm=nullptr) |
Encrypt a password for a given user. | |
Prepared statements | |
PostgreSQL supports prepared SQL statements, i.e. statements that you can register under a name you choose, optimized once by the backend, and executed any number of times under the given name. Prepared statement definitions are not sensitive to transaction boundaries. A statement defined inside a transaction will remain defined outside that transaction, even if the transaction itself is subsequently aborted. Once a statement has been prepared, it will only go away if you close the connection or explicitly "unprepare" the statement. Use the
A statement's definition can refer to its parameters as Here's an example of how to use prepared statements. using namespace pqxx;
void foo(connection &c)
{
work tx{c};
if (std::empty(r)) throw runtime_error{"mytable not found!"};
}
void prepare(zview name, zview definition) & Define a prepared statement. Definition connection.hxx:805 | |
class | connecting |
class | internal::gate::const_connection_largeobject |
class | internal::gate::connection_errorhandler |
class | internal::gate::connection_transaction |
struct | internal::gate::connection_stream_from |
class | internal::gate::connection_stream_to |
class | internal::gate::connection_largeobject |
class | internal::gate::connection_notification_receiver |
class | internal::gate::connection_pipeline |
class | internal::gate::connection_dbtransaction |
class | internal::gate::connection_sql_cursor |
void | prepare (zview name, zview definition) & |
Define a prepared statement. | |
void | prepare (char const name[], char const definition[]) & |
void | prepare (char const definition[]) & |
Define a nameless prepared statement. | |
void | prepare (zview definition) & |
void | unprepare (std::string_view name) |
Drop prepared statement. | |
std::string | adorn_name (std::string_view) |
Suffix unique number to name to make it unique within session context. | |
std::string | esc (char const text[]) const |
Escape string for use as SQL string literal on this connection. | |
std::string | esc (std::string_view text) const |
Escape string for use as SQL string literal on this connection. | |
std::string | esc_raw (unsigned char const bin[], std::size_t len) const |
Escape binary string for use as SQL string literal on this connection. | |
std::string | esc_raw (bytes_view) const |
Escape binary string for use as SQL string literal on this connection. | |
bytes | unesc_bin (std::string_view text) const |
Unescape binary data, e.g. from a bytea field. | |
std::string | quote_raw (bytes_view) const |
Escape and quote a string of binary data. | |
std::string | quote_name (std::string_view identifier) const |
Escape and quote an SQL identifier for use in a query. | |
std::string | quote_table (std::string_view name) const |
Escape and quote a table name. | |
std::string | quote_table (table_path) const |
Escape and quote a table path. | |
template<typename STRINGS > | |
std::string | quote_columns (STRINGS const &columns) const |
Quote and comma-separate a series of column names. | |
template<typename T > | |
std::string | quote (T const &t) const |
Represent object as SQL string, including quoting & escaping. | |
std::string | quote (binarystring const &) const |
std::string | quote (bytes_view bytes) const |
Escape and quote binary data for use as a BYTEA value in SQL statement. | |
std::string | esc_like (std::string_view text, char escape_char='\\') const |
Escape string for literal LIKE match. | |
std::string | esc (char const text[], std::size_t maxlen) const |
Escape string for use as SQL string literal on this connection. | |
std::string | unesc_raw (zview text) const |
Unescape binary data, e.g. from a bytea field. | |
std::string | unesc_raw (char const text[]) const |
Unescape binary data, e.g. from a bytea field. | |
std::string | quote_raw (unsigned char const bin[], std::size_t len) const |
Escape and quote a string of binary data. | |
void | cancel_query () |
Attempt to cancel the ongoing query, if any. | |
void | set_verbosity (error_verbosity verbosity) &noexcept |
Set session verbosity. | |
void | set_notice_handler (std::function< void(zview)> handler) |
Set a notice handler to the connection. | |
std::vector< errorhandler * > | get_errorhandlers () const |
std::string | connection_string () const |
Return a connection string encapsulating this connection's options. | |
void | close () |
Explicitly close the connection. | |
internal::pq::PGconn * | release_raw_connection () && |
Release the raw connection without closing it. | |
void | set_variable (std::string_view var, std::string_view value) & |
Set session variable, using SQL's SET command. | |
std::string | get_variable (std::string_view) |
Read session variable, using SQL's SHOW command. | |
static connection | seize_raw_connection (internal::pq::PGconn *raw_conn) |
Seize control of a raw libpq connection. | |
Notifications and Receivers | |
This is PostgreSQL-specific extension that goes beyond standard SQL. It's a communications mechanism between clients on a database, akin to a transactional message bus. A notification happens on a channel, identified by a name. You can set a connection to listen for notifications on the channel, using the connection's listen() function. (Internally this will issue a Notifications can carry an optional payload string. This is free-form text which carries additional information to the receiver.
Case sensitivityChannel names are case-sensitive. By default, however, PostgreSQL does convert the channel name in a Thus, a You can prevent this conversion by putting the name in double quotes, as quote_name() does. This is what libpqxx's notification functions do. If you use libpqxx to lisen on Confused? Safest thing to do is to use only lower-case letters in the channel names! TransactionsBoth listening and notifying are transactional in the backend: they only take effect once the back-end transaction in which you do them is committed. For an outgoing notification, this means that the transaction holds on to the outgoing message until you commit. (A nontransaction does not start a backend transaction, so if that's the transaction type you're using, the message does go out immediately.) For listening to incoming notifications, it gets a bit more complicated. To avoid complicating its internal bookkeeping, libpqxx only lets you start listening while no transaction is open. No notifications will come in while you're in a transaction... again unless it's a nontransaction of course, because that does not open a transaction on the backend. ExceptionsIf your handler throws an exception, that will simply propagate up the call chain to wherever you were when you received it. This is differnt from the old EncodingWhen a client sends a notification, it does so in its client encoding. If necessary, the back-end converts them to its internal encoding. And then when a client receives the notification, the database converts it to the receiver's client encoding. Simple enough, right? However if you should change your connection's client encoding after you start listening on a channel, then any notifications you receive may have different channel names than the ones for which you are listening. If this could be a problem in your scenario, stick to names in pure ASCII. Those will look the same in all the encodings postgres supports. | |
using | notification_handler = std::function< void(notification)> |
A handler callback for incoming notifications on a given channel. | |
int | get_notifs () |
Check for pending notifications and take appropriate action. | |
int | await_notification () |
Wait for a notification to come in. | |
int | await_notification (std::time_t seconds, long microseconds=0) |
Wait for a notification to come in, or for given timeout to pass. | |
void | listen (std::string_view channel, notification_handler handler={}) |
Attach a handler to a notification channel. | |
Connection to a database.
This is the first class to look at when you wish to work with a database through libpqxx. As per RAII principles, the connection opens during construction, and closes upon destruction. If the connection attempt fails, you will not get a connection object; the constructor will fail with a pqxx::broken_connection exception.
When creating a connection, you can pass a connection URI or a postgres connection string, to specify the database server's address, a login username, and so on. If you don't, the connection will try to obtain them from certain environment variables. If those are not set either, the default is to try and connect to the local system's port 5432.
Find more about connection strings here:
https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING
The variables are documented here:
https://www.postgresql.org/docs/current/libpq-envars.html
To query or manipulate the database once connected, use one of the transaction classes (see pqxx/transaction_base.hxx) and perhaps also the transactor framework (see pqxx/transactor.hxx).
When a connection breaks, or fails to establish itself in the first place, you will typically get a broken_connection exception. This can happen at almost any point.
using pqxx::connection::notification_handler = std::function<void(notification)> |
A handler callback for incoming notifications on a given channel.
Your callback must accept a Notifications and Receivers object. This object can and will exist only for the duration of the handling of that one incoming notification.
The handler can be "empty," i.e. contain no code. Setting an empty handler on a channel disables listening on that channel.
pqxx::connection::connection | ( | connection && | rhs | ) |
Move constructor.
Moving a connection is not allowed if it has an open transaction, or has error handlers or is listening for notifications. In those situations, other objects may hold references to the old object which would become invalid and might produce hard-to-diagnose bugs.
std::string pqxx::connection::adorn_name | ( | std::string_view | n | ) |
Suffix unique number to name to make it unique within session context.
Used internally to generate identifiers for SQL objects (such as cursors and nested transactions) based on a given human-readable base name.
int pqxx::connection::await_notification | ( | ) |
Wait for a notification to come in.
There are other events that will also cancel the wait, such as the backend failing. Also, the function will wake up by itself from time to time. Your code must be ready to handle this; don't assume after waking up that there will always be a pending notifiation.
If a notification comes in, the call to this function will process it, along with any other notifications that may have been pending.
To wait for notifications into your own event loop instead, wait until there is incoming data on the connection's socket to be read, then call get_notifs() repeatedly until it returns zero.
int pqxx::connection::await_notification | ( | std::time_t | seconds, |
long | microseconds = 0 |
||
) |
Wait for a notification to come in, or for given timeout to pass.
There are other events that will also cancel the wait, such as the backend failing, some kinds of signal coming in, or timeout expiring.
If a notification comes in, the call will process it, along with any other notifications that may have been pending.
To wait for notifications into your own event loop instead, wait until there is incoming data on the connection's socket to be read, then call get_notifs repeatedly until it returns zero.
If your notifcation handler throws an exception, get_notifs()
will just propagate it back to you. (This is different from the old notification_receiver
mechanism, which would merely log them.)
void pqxx::connection::cancel_query | ( | ) |
Attempt to cancel the ongoing query, if any.
You can use this from another thread, and/or while a query is executing in a pipeline, but it's up to you to ensure that you're not canceling the wrong query. This may involve locking.
void pqxx::connection::close | ( | ) |
Explicitly close the connection.
The destructor will do this for you automatically. Still, there is a reason to close()
objects explicitly where possible: if an error should occur while closing, close()
can throw an exception. A destructor cannot.
Closing a connection is idempotent. Closing a connection that's already closed does nothing.
std::string pqxx::connection::connection_string | ( | ) | const |
Return a connection string encapsulating this connection's options.
The connection must be currently open for this to work.
Returns a reconstruction of this connection's connection string. It may not exactly match the connection string you passed in when creating this connection.
char const * pqxx::connection::dbname | ( | ) | const |
Name of the database to which we're connected, if any.
Returns nullptr when not connected.
|
inline |
Escape string for use as SQL string literal on this connection.
std::string pqxx::connection::esc | ( | std::string_view | text | ) | const |
Escape string for use as SQL string literal on this connection.
std::string pqxx::connection::esc_like | ( | std::string_view | text, |
char | escape_char = '\\' |
||
) | const |
Escape string for literal LIKE match.
Use this when part of an SQL "LIKE" pattern should match only as a literal string, not as a pattern, even if it contains "%" or "_" characters that would normally act as wildcards.
The string does not get string-escaped or quoted. You do that later.
For instance, let's say you have a string name
entered by the user, and you're searching a file
column for items that match name
followed by a dot and three letters. Even if name
contains wildcard characters "%" or "_", you only want those to match literally, so "_" only matches "_" and "%" only matches a single "%".
You do that by "like-escaping" name
, appending the wildcard pattern ".___"
, and finally, escaping and quoting the result for inclusion in your query:
The SQL "LIKE" operator also lets you choose your own escape character. This is supported, but must be a single-byte character.
std::string pqxx::connection::esc_raw | ( | bytes_view | bin | ) | const |
Escape binary string for use as SQL string literal on this connection.
You can also just use esc with a binary string.
std::string pqxx::connection::get_client_encoding | ( | ) | const |
Get client-side character encoding, by name.
Each connection is governed by a "client encoding," which dictates how strings and other text is represented in bytes. The database server will send text data to you in this encoding, and you should use it for the queries and data which you send to the server.
Search the PostgreSQL documentation for "character set encodings" to find out more about the available encodings, how to extend them, and how to use them. Not all server-side encodings are compatible with all client-side encodings or vice versa.
Encoding names are case-insensitive, so e.g. "UTF8" is equivalent to "utf8".
You can change the client encoding, but this may not work when the connection is in a special state, such as when streaming a table. It's not clear what happens if you change the encoding during a transaction, and then abort the transaction.
std::vector< pqxx::errorhandler * > pqxx::connection::get_errorhandlers | ( | ) | const |
The entries are ordered from oldest to newest handler.
The pointers point to the real errorhandlers. The container it returns however is a copy of the one internal to the connection, not a reference.
int pqxx::connection::get_notifs | ( | ) |
Check for pending notifications and take appropriate action.
This does not block. To wait for incoming notifications, either call await_notification() (it calls this function); or wait for incoming data on the connection's socket (i.e. wait to read), and then call this function repeatedly until it returns zero. After that, there are no more pending notifications so you may want to wait again, or move on and do other work.
If any notifications are pending when you call this function, it processes them by checking for a matching notification handler, and if it finds one, invoking it. If there is no matching handler, nothing happens.
If your notifcation handler throws an exception, get_notifs()
will just propagate it back to you. (This is different from the old notification_receiver
mechanism, which would merely log them.)
std::string pqxx::connection::get_var | ( | std::string_view | var | ) |
Read currently applicable value of a variable.
This function executes an SQL statement, so it won't work while a pipeline or query stream is active on the connection.
std::optional
if the variable's value is null, or its string value otherwise.
|
inline |
Read currently applicable value of a variable.
This function executes an SQL statement, so it won't work while a pipeline or query stream is active on the connection.
If there is any possibility that the variable is null, ensure that TYPE
can represent null values.
std::string pqxx::connection::get_variable | ( | std::string_view | var | ) |
Read session variable, using SQL's SHOW
command.
char const * pqxx::connection::hostname | ( | ) | const |
Database server address, if given.
This may be an IP address, or a hostname, or (for a Unix domain socket) a socket path. Returns nullptr when not connected.
|
noexcept |
Is this connection open at the moment?
void pqxx::connection::listen | ( | std::string_view | channel, |
notification_handler | handler = {} |
||
) |
Attach a handler to a notification channel.
Issues a LISTEN
SQL command for channel channel
, and stores handler
as the callback for when a notification comes in on that channel.
The connection can call this handler when you call get_notifs() or await_notification() on the connection. Some internal functions may also call these functions. The client-side handling is fully synchronous and notifications only come in while the connection is not in a back-end transaction.
The handler is a std::function
(see notification_handler), but you can simply pass in a lambda with the right parameters, or a function, or an object of a type you define that happens to implemnt the right function call operator.
Your handler probably needs to interact with your application's data; the simple way to get that working is to pass a lambda with a closure referencing the data items you need.
If the handler is empty (the default), then that stops the connection listening on the channel. It cancels your subscription, so to speak. You can do that as many times as you like, even when you never started listening to that channel in the first place.
A connection can only have one handler per channel, so if you register two different handlers on the same channel, then the second overwrites the first.
pqxx::connection & pqxx::connection::operator= | ( | connection && | rhs | ) |
Move assignment.
Neither connection can have an open transaction, errorhandler
, or notification_receiver
.
void pqxx::connection::prepare | ( | char const | definition[] | ) | & |
Define a nameless prepared statement.
This can be useful if you merely want to pass large binary parameters to a statement without otherwise wishing to prepare it. If you use this feature, always keep the definition and the use close together to avoid the nameless statement being redefined unexpectedly by code somewhere else.
void pqxx::connection::prepare | ( | char const | name[], |
char const | definition[] | ||
) | & |
name | unique name for the new prepared statement. |
definition | SQL statement to prepare. |
Define a prepared statement.
name | unique name for the new prepared statement. |
definition | SQL statement to prepare. |
|
noexcept |
Invoke notice processor function. Newline at end is recommended.
The zview variant, with a message ending in newline, is the most efficient way to call process_notice.
|
noexcept |
What version of the PostgreSQL protocol is this connection using?
The answer can be 0 (when there is no connection); 3 for protocol 3.0; or possibly higher values as newer protocol versions come into use.
|
inline |
Represent object as SQL string, including quoting & escaping.
Recognises nulls and represents them as SQL nulls. They get no quotes.
|
inline |
Quote and comma-separate a series of column names.
Use this to save a bit of work in cases where you repeatedly need to pass the same list of column names, e.g. with stream_to and stream_from. Some functions that need to quote the columns list internally, will have a "raw" alternative which let you do the quoting yourself. It's a bit of extra work, but it can in rare cases let you eliminate some duplicate work in quoting them repeatedly.
std::string pqxx::connection::quote_table | ( | std::string_view | name | ) | const |
Escape and quote a table name.
When passing just a table name, this is just another name for quote_name.
std::string pqxx::connection::quote_table | ( | table_path | path | ) | const |
Escape and quote a table path.
A table path consists of a table name, optionally prefixed by a schema name; and if both are given, they are in turn optionally prefixed by a database name.
Each portion of the path (database name, schema name, table name) will be quoted separately, and they will be joined together by dots. So for example, myschema.mytable
will become "myschema"."mytable"
.
|
inline |
Release the raw connection without closing it.
The connection
object becomes unusable after this.
|
inlinestatic |
Seize control of a raw libpq connection.
raw_conn | a raw libpq PQconn pointer. |
|
noexcept |
What version of the PostgreSQL server are we connected to?
The result is a bit complicated: each of the major, medium, and minor release numbers is written as a two-digit decimal number, and the three are then concatenated. Thus server version 9.4.2 will be returned as the decimal number 90402. If there is no connection to the server, this returns zero.
void pqxx::connection::set_client_encoding | ( | char const | encoding[] | ) | & |
Set client-side character encoding, by name.
encoding | Name of the character set encoding to use. |
|
inline |
Set client-side character encoding, by name.
encoding | Name of the character set encoding to use. |
|
inline |
Set a notice handler to the connection.
When a notice comes in (a warning or error message), the connection or result object on which it happens will call the notice handler, passing the message as its argument.
The handler must not throw any exceptions. If it does, the program will terminate.
connection
that can call a notice handler, but any of the result
objects that it produces as well. So, be prepared for the possibility that the handler may still receive a call after the connection has been closed.
|
inline |
Set one of the session variables to a new value.
This executes SQL, so do not do it while a pipeline or stream is active on the connection.
The value you set here will last for the rest of the connection's duration, or until you set a new value.
If you set the value while in a dbtransaction (i.e. any transaction that is not a nontransaction), then rolling back the transaction will undo the change.
All applies to setting session variables. You can also set the same variables as local variables, in which case they will always revert to their previous value when the transaction ends (or when you overwrite them of course). To set a local variable, simply execute an SQL statement along the lines of "`SET LOCAL var = 'value'`" inside your transaction.
var | The variable to set. |
value | The new value for the variable. |
ref variable_set_to_null if the value is null; this is not allowed.
void pqxx::connection::set_variable | ( | std::string_view | var, |
std::string_view | value | ||
) | & |
Set session variable, using SQL's SET
command.
SET
command.var | Variable to set. |
value | New value for Var. This can be any SQL expression. If it's a string, be sure that it's properly escaped and quoted. |
|
noexcept |
Set session verbosity.
Set the verbosity of error messages to "terse", "normal" (the default), or "verbose."
This affects the notices that the connection
and its result
objects will pass to your notice handler.
If "terse", returned messages include severity, primary text, and position only; this will normally fit on a single line. "normal" produces messages that include the above plus any detail, hint, or context fields (these might span multiple lines). "verbose" includes all available fields.
|
noexcept |
Socket currently used for connection, or -1 for none.
Query the current socket number. This is intended for event loops based on functions such as select() or poll(), where you're waiting for any of multiple file descriptors to become ready for communication.
Please try to stay away from this function. It is really only meant for event loops that need to wait on more than one file descriptor. If all you need is to block until a notification arrives, for instance, use await_notification(). If you want to issue queries and retrieve results in nonblocking fashion, check out the pipeline class.
|
inline |
Unescape binary data, e.g. from a bytea
field.
Takes a binary string as escaped by PostgreSQL, and returns a restored copy of the original binary data.
(The data must be encoded in PostgreSQL's "hex" format. The legacy "bytea" escape format, used prior to PostgreSQL 9.0, is no longer supported.)
std::string pqxx::connection::unesc_raw | ( | char const | text[] | ) | const |
Unescape binary data, e.g. from a bytea
field.
Takes a binary string as escaped by PostgreSQL, and returns a restored copy of the original binary data.
|
inline |
Unescape binary data, e.g. from a bytea
field.
Takes a binary string as escaped by PostgreSQL, and returns a restored copy of the original binary data.
char const * pqxx::connection::username | ( | ) | const |
Database user ID under which we are connected, if any.
Returns nullptr when not connected.