libpqxx
7.0.5
|
Connection to a database. More...
#include <connection.hxx>
Public Member Functions | |
connection () | |
connection (std::string const &options) | |
connection (char const options[]) | |
connection (zview options) | |
connection (connection &&rhs) | |
Move constructor. More... | |
~connection () | |
connection & | operator= (connection &&rhs) |
Move assignment. More... | |
connection (connection const &)=delete | |
connection & | operator= (connection const &)=delete |
bool PQXX_PURE | is_open () const noexcept |
Is this connection open at the moment? More... | |
void | process_notice (char const []) noexcept |
Invoke notice processor function. The message should end in newline. More... | |
void | process_notice (std::string const &msg) noexcept |
Invoke notice processor function. Newline at end is recommended. More... | |
void | process_notice (zview) noexcept |
Invoke notice processor function. Newline at end is recommended. More... | |
void | trace (std::FILE *) noexcept |
Enable tracing to a given output stream, or nullptr to disable. More... | |
void | set_variable (std::string_view var, std::string_view value) |
Set session variable, using SQL's SET command. More... | |
std::string | get_variable (std::string_view) |
Read session variable, using SQL's SHOW command. More... | |
std::string | encrypt_password (char const user[], char const password[], char const *algorithm=nullptr) |
Encrypt a password for a given user. More... | |
std::string | encrypt_password (zview user, zview password, zview algorithm) |
std::string | adorn_name (std::string_view) |
Suffix unique number to name to make it unique within session context. More... | |
std::string | esc (char const text[], size_t maxlen) const |
Escape string for use as SQL string literal on this connection. More... | |
std::string | esc (char const text[]) const |
Escape string for use as SQL string literal on this connection. More... | |
std::string | esc (std::string_view text) const |
Escape string for use as SQL string literal on this connection. More... | |
std::string | esc_raw (unsigned char const bin[], size_t len) const |
Escape binary string for use as SQL string literal on this connection. More... | |
std::string | unesc_raw (std::string const &text) const |
Unescape binary data, e.g. from a table field or notification payload. More... | |
std::string | unesc_raw (zview text) const |
Unescape binary data, e.g. from a table field or notification payload. More... | |
std::string | unesc_raw (char const text[]) const |
Unescape binary data, e.g. from a table field or notification payload. More... | |
std::string | quote_raw (unsigned char const bin[], size_t len) const |
Escape and quote a string of binary data. More... | |
std::string | quote_name (std::string_view identifier) const |
Escape and quote an SQL identifier for use in a query. More... | |
template<typename T > | |
std::string | quote (T const &t) const |
Represent object as SQL string, including quoting & escaping. More... | |
std::string | quote (binarystring const &) const |
std::string | esc_like (std::string_view text, char escape_char='\\') const |
Escape string for literal LIKE match. More... | |
void | cancel_query () |
Attempt to cancel the ongoing query, if any. More... | |
void | set_verbosity (error_verbosity verbosity) noexcept |
Set session verbosity. More... | |
std::vector< errorhandler * > | get_errorhandlers () const |
Return pointers to the active errorhandlers. More... | |
std::string | connection_string () const |
Return a connection string encapsulating this connection's options. More... | |
void | close () |
Explicitly close the connection. More... | |
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 database we're connected to, if any. More... | |
char const * | username () const |
Database user ID we're connected under, if any. More... | |
char const * | hostname () const |
Address of server, or nullptr if none specified (i.e. default or local) More... | |
char const * | port () const |
Server port number we're connected to. More... | |
int PQXX_PURE | backendpid () const noexcept |
Process ID for backend process, or 0 if inactive. More... | |
int PQXX_PURE | sock () const noexcept |
Socket currently used for connection, or -1 for none. Use with care! More... | |
int PQXX_PURE | protocol_version () const noexcept |
What version of the PostgreSQL protocol is this connection using? More... | |
int PQXX_PURE | server_version () const noexcept |
What version of the PostgreSQL server are we connected to? More... | |
Text encoding | |
std::string | get_client_encoding () const |
Get client-side character encoding, by name. More... | |
void | set_client_encoding (std::string const &encoding) |
Set client-side character encoding, by name. More... | |
void | set_client_encoding (char const encoding[]) |
Set client-side character encoding, by name. More... | |
int | encoding_id () const |
Get the connection's encoding, as a PostgreSQL-defined code. More... | |
Notifications and Receivers | |
int | get_notifs () |
Check for pending notifications and take appropriate action. More... | |
int | await_notification () |
Wait for a notification to come in. More... | |
int | await_notification (long seconds, long microseconds) |
Wait for a notification to come in, or for given timeout to pass. More... | |
Prepared statements | |
PostgreSQL supports prepared SQL statements, i.e. statements that can be registered under a client-provided name, 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
| |
void | prepare (char const name[], char const definition[]) |
Define a prepared statement. More... | |
void | prepare (std::string const &name, std::string const &definition) |
void | prepare (zview name, zview definition) |
void | prepare (char const definition[]) |
Define a nameless prepared statement. More... | |
void | prepare (zview definition) |
void | unprepare (std::string_view name) |
Drop prepared statement. More... | |
Connection to a database.
This is the first class to look at when you wish to work with a database through libpqxx. The connection opens during construction, and closes upon destruction.
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 none is given, 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, you will typically get a broken_connection exception. This can happen at almost any point.
pqxx::connection::connection | ( | ) |
|
explicit |
|
explicit |
References pqxx::check_version().
|
explicit |
References pqxx::zview::c_str().
pqxx::connection::connection | ( | connection && | rhs | ) |
Move constructor.
Moving a connection is not allowed if it has an open transaction, or has error handlers or notification receivers registered on it. In those situations, other objects may hold references to the old object which would become invalid and might produce hard-to-diagnose bugs.
pqxx::connection::~connection | ( | ) |
|
delete |
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.
References pqxx::to_string().
Referenced by pqxx::cursor_base::cursor_base(), and pqxx::subtransaction::subtransaction().
int pqxx::connection::await_notification | ( | ) |
Wait for a notification to come in.
The wait may also be terminated by other events, such as the connection to the backend failing.
If a notification comes in, the call will process it. It will also process any notifications that may have been pending.
References get_notifs().
int pqxx::connection::await_notification | ( | long | seconds, |
long | microseconds | ||
) |
Wait for a notification to come in, or for given timeout to pass.
The wait may also be terminated by other events, such as the connection to the backend failing.
If a notification comes in, the call will process it. It will also process any notifications that may have been pending.
References get_notifs().
|
noexcept |
Process ID for backend process, or 0 if inactive.
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.
You won't normally need this. Destroying a connection object will have the same effect.
References pqxx::check_cast(), process_notice(), and pqxx::to_string().
Referenced by operator=().
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 database we're connected to, if any.
int pqxx::connection::encoding_id | ( | ) | const |
Get the connection's encoding, as a PostgreSQL-defined code.
References pqxx::check_cast(), get_notifs(), and is_open().
Referenced by esc_like(), get_client_encoding(), pqxx::stream_from::get_raw_line(), operator=(), and pqxx::pipeline::resume().
std::string pqxx::connection::encrypt_password | ( | char const | user[], |
char const | password[], | ||
char const * | algorithm = nullptr |
||
) |
Encrypt a password for a given user.
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 nullptr
. If the pointer is null, this will query the password_encryption
setting from the server, and use the default algorithm as defined there.
Thus the password for a user can be changed with:
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.
References pqxx::encrypt_password().
References pqxx::zview::c_str(), and pqxx::encrypt_password().
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.
References encoding_id(), and pqxx::internal::name_encoding().
std::vector< pqxx::errorhandler * > pqxx::connection::get_errorhandlers | ( | ) | const |
Return pointers to the active errorhandlers.
The entries are ordered from oldest to newest handler.
You may use this to find errorhandlers that your application wants to delete when destroying the connection. Be aware, however, that libpqxx may also add errorhandlers of its own, and those will be included in the list. If this is a problem for you, derive your errorhandlers from a custom base class derived from pqxx::errorhandler. Then use dynamic_cast to find which of the error handlers are yours.
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.
References get_notifs().
int pqxx::connection::get_notifs | ( | ) |
Check for pending notifications and take appropriate action.
All notifications found pending at call time are processed by finding any matching receivers and invoking those. If no receivers matched the notification string, none are invoked but the notification is considered processed.
Exceptions thrown by client-registered receivers are reported using the connection's errorhandlers, but the exceptions themselves are not passed on outside this function.
References process_notice().
Referenced by await_notification(), encoding_id(), get_errorhandlers(), and unprepare().
std::string pqxx::connection::get_variable | ( | std::string_view | var | ) |
Read session variable, using SQL's SHOW
command.
References pqxx::result::at(), protocol_version(), and server_version().
Referenced by pqxx::transaction_base::get_variable().
char const * pqxx::connection::hostname | ( | ) | const |
Address of server, or nullptr if none specified (i.e. default or local)
|
noexcept |
Is this connection open at the moment?
Referenced by pqxx::transaction_base::commit(), encoding_id(), operator=(), and set_client_encoding().
pqxx::connection & pqxx::connection::operator= | ( | connection && | rhs | ) |
Move assignment.
Neither connection can have an open transaction, registered error handlers, or registered notification receivers.
References close(), pqxx::internal::enc_group(), encoding_id(), and is_open().
|
delete |
char const * pqxx::connection::port | ( | ) | const |
Server port number we're connected to.
void pqxx::connection::prepare | ( | char const | name[], |
char const | definition[] | ||
) |
Define a prepared statement.
The statement's definition can refer to a parameter using the parameter's positional number n in the definition. For example, the first parameter can be used as a variable "$1", the second as "$2" and so on.
Here's an example of how to use prepared statements.
name | unique name for the new prepared statement. |
definition | SQL statement to prepare. |
Referenced by prepare().
void pqxx::connection::prepare | ( | std::string const & | name, |
std::string const & | definition | ||
) |
References pqxx::zview::c_str().
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.
References prepare().
void pqxx::connection::prepare | ( | zview | definition | ) |
References pqxx::zview::c_str(), and prepare().
Referenced by prepare().
|
noexcept |
Invoke notice processor function. The message should end in newline.
Referenced by pqxx::transaction_base::abort(), pqxx::transaction_base::close(), close(), pqxx::transaction_base::commit(), get_notifs(), trace(), and pqxx::transaction_base::~transaction_base().
|
noexcept |
Invoke notice processor function. Newline at end is recommended.
|
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.
Referenced by get_variable().
|
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.
Referenced by get_variable().
void pqxx::connection::set_client_encoding | ( | std::string const & | encoding | ) |
Set client-side character encoding, by name.
encoding | Name of the character set encoding to use. |
References pqxx::encrypt_password().
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. |
References is_open(), and pqxx::to_string().
void pqxx::connection::set_variable | ( | std::string_view | var, |
std::string_view | value | ||
) |
Set session variable, using SQL's SET
command.
Set a session variable for this connection. See the PostgreSQL documentation for a list of variables that can be set and their permissible values.
If a transaction is currently in progress, aborting that transaction will normally discard the newly set value. That is not true for nontransaction however, since it does not start a real backend transaction.
var | Variable to set. |
value | New value for Var: an identifier, a quoted string, or a number. |
Referenced by pqxx::transaction_base::set_variable().
|
noexcept |
Set session verbosity.
Set the verbosity of error messages to "terse", "normal" (the default), or "verbose."
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. Use with care!
Query the current socket number. This is intended for event loops based on functions such as select() or poll(), where multiple file descriptors are watched.
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.
|
noexcept |
Enable tracing to a given output stream, or nullptr to disable.
References pqxx::notification_receiver::channel(), process_notice(), and quote_name().
void pqxx::connection::unprepare | ( | std::string_view | name | ) |
Drop prepared statement.
References pqxx::check_cast(), get_notifs(), and quote_name().
char const * pqxx::connection::username | ( | ) | const |
Database user ID we're connected under, if any.
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |
|
friend |