libpqxx
pqxx::connection_base Class Reference

connection_base abstract base class; represents a connection to a database. More...

#include <connection_base.hxx>

Inheritance diagram for pqxx::connection_base:

Public Types

enum  error_verbosity { terse =0, normal =1, verbose =2 }
 Error verbosity levels. More...
 

Public Member Functions

void disconnect () noexcept
 Explicitly close connection. More...
 
bool PQXX_PURE is_open () const noexcept
 Is this connection open at the moment? More...
 
void process_notice (const char[]) noexcept
 Invoke notice processor function. The message should end in newline. More...
 
void process_notice (const std::string &) 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_client_encoding (const std::string &Encoding)
 Set client-side character encoding. More...
 
void set_variable (const std::string &Var, const std::string &Value)
 Set session variable. More...
 
std::string get_variable (const std::string &)
 Read session variable. More...
 
template<typename TRANSACTOR >
void perform (const TRANSACTOR &T, int Attempts)
 
template<typename TRANSACTOR >
void perform (const TRANSACTOR &T)
 
std::string adorn_name (const std::string &)
 Suffix unique number to name to make it unique within session context. More...
 
std::string esc (const char str[])
 Escape string for use as SQL string literal on this connection. More...
 
std::string esc (const char str[], size_t maxlen)
 Escape string for use as SQL string literal on this connection. More...
 
std::string esc (const std::string &str)
 Escape string for use as SQL string literal on this connection. More...
 
std::string esc_raw (const unsigned char str[], size_t len)
 Escape binary string for use as SQL string literal on this connection. More...
 
std::string unesc_raw (const std::string &text)
 Unescape binary data, e.g. from a table field or notification payload. More...
 
std::string unesc_raw (const char *text)
 Unescape binary data, e.g. from a table field or notification payload. More...
 
std::string quote_raw (const unsigned char str[], size_t len)
 Escape and quote a string of binary data. More...
 
std::string quote_name (const std::string &identifier)
 Escape and quote an SQL identifier for use in a query. More...
 
template<typename T >
std::string quote (const T &t)
 Represent object as SQL string, including quoting & escaping. More...
 
std::string quote (const binarystring &)
 
void cancel_query ()
 Attempt to cancel the ongoing query, if any. More...
 
void set_verbosity (error_verbosity verbosity) noexcept
 Set session verbosity. More...
 
error_verbosity get_verbosity () const noexcept
 Retrieve current error verbosity. More...
 
std::vector< errorhandler * > get_errorhandlers () const
 Return pointers to the active errorhandlers. More...
 
Activation

Connections can be temporarily deactivated, or they can break because of overly impatient firewalls dropping TCP connections. Where possible, libpqxx will try to re-activate these when resume using them, or you can wake them up explicitly. You probably won't need this feature, but you should be aware of it.

void activate ()
 Explicitly activate deferred or deactivated connection. More...
 
void deactivate ()
 Explicitly deactivate connection. More...
 
void inhibit_reactivation (bool inhibit)
 Disallow (or permit) connection recovery. More...
 
void simulate_failure ()
 Make the connection fail. 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.

const char * dbname ()
 Name of database we're connected to, if any. More...
 
const char * username ()
 Database user ID we're connected under, if any. More...
 
const char * hostname ()
 Address of server, or nullptr if none specified (i.e. default or local) More...
 
const char * port ()
 Server port number we're connected to. More...
 
int PQXX_PURE backendpid () const noexcept
 Process ID for backend process. More...
 
int PQXX_PURE sock () const noexcept
 Socket currently used for connection, or -1 for none. Use with care! 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, only closing the connection or explicitly "unpreparing" it can make it go away.

Use the pqxx::transaction_base::exec_prepared functions to execute a prepared statement. Use prepared().exists() to find out whether a statement has been prepared under a given name. See Prepared statements for a full discussion.

Never try to prepare, execute, or unprepare a prepared statement manually using direct SQL queries. Always use the functions provided by libpqxx.

void prepare (const std::string &name, const std::string &definition)
 Define a prepared statement. More...
 
void prepare (const std::string &definition)
 Define a nameless prepared statement. More...
 
void unprepare (const std::string &name)
 Drop prepared statement. More...
 
void prepare_now (const std::string &name)
 Request that prepared statement be registered with the server. More...
 

Protected Member Functions

 connection_base (connectionpolicy &)
 
void init ()
 
void close () noexcept
 
void wait_read () const
 
void wait_read (long seconds, long microseconds) const
 
void wait_write () const
 

Friends

class internal::gate::const_connection_largeobject
 
class internal::gate::connection_prepare_invocation
 
class internal::gate::connection_errorhandler
 
class internal::gate::connection_transaction
 
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
 
class internal::gate::connection_reactivation_avoidance_exemption
 
class internal::gate::connection_parameterized_invocation
 

Capabilities

Some functionality may only be available in certain versions of the backend, or only when speaking certain versions of the communications protocol that connects us to the backend.

enum  capability { cap_end }
 Session capabilities. More...
 
bool supports (capability c) const noexcept
 Does this connection seem to support the given capability? 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...
 

Detailed Description

connection_base abstract base class; represents a connection to a database.

This is the first class to look at when you wish to work with a database through libpqxx. Depending on the implementing concrete child class, a connection can be automatically opened when it is constructed, or when it is first used, or somewhere inbetween. The connection is automatically closed upon destruction (if it hasn't been closed already).

To query or manipulate the database once connected, use one of the transaction classes (see pqxx/transaction_base.hxx) or preferably the transactor framework (see pqxx/transactor.hxx).

If a network connection to the database server fails, the connection will be restored automatically (although any transaction going on at the time will have to be aborted). This also means that any information set in previous transactions that is not stored in the database, such as temp tables or connection-local variables defined with PostgreSQL's SET command, will be lost. Whenever you create such state, either keept it local to one transaction, where possible, or inhibit automatic reactivation of the connection using the inhibit_reactivation() method.

When a connection breaks, you will typically get a broken_connection exception. This can happen at almost any point, and the details may depend on which connection class (all derived from this one) you use.

As a general rule, always avoid raw queries if libpqxx offers a dedicated function for the same purpose. There may be hidden logic to hide certain complications from you, such as reinstating session variables when a broken or disabled connection is reactivated.

Warning
On Unix-like systems, including GNU and BSD systems, your program may receive the SIGPIPE signal when the connection to the backend breaks. By default this signal will abort your program. Use "signal(SIGPIPE, SIG_IGN)" if you want your program to continue running after a connection fails.

Member Enumeration Documentation

◆ capability

Session capabilities.

No capabilities are defined at the moment: all capabilities that older versions checked for are now always supported.

Enumerator
cap_end 

Not a capability value; end-of-enumeration marker.

◆ error_verbosity

Error verbosity levels.

Enumerator
terse 
normal 
verbose 

Constructor & Destructor Documentation

◆ connection_base()

pqxx::connection_base::connection_base ( connectionpolicy pol)
explicitprotected

Member Function Documentation

◆ activate()

void pqxx::connection_base::activate ( )

Explicitly activate deferred or deactivated connection.

Use of this method is entirely optional. Whenever a connection is used while in a deferred or deactivated state, it will transparently try to bring itself into an activated state. This function is best viewed as an explicit hint to the connection that "if you're not in an active state, now would be a good time to get into one." Whether a connection is currently in an active state or not makes no real difference to its functionality. There is also no particular need to match calls to activate() with calls to deactivate(). A good time to call activate() might be just before you first open a transaction on a lazy connection.

References disconnect(), pqxx::connectionpolicy::do_completeconnect(), pqxx::connectionpolicy::do_startconnect(), pqxx::internal::reactivation_avoidance_counter::get(), and is_open().

Referenced by close(), dbname(), esc(), esc_raw(), get_errorhandlers(), hostname(), init(), port(), prepare_now(), quote_name(), pqxx::internal::sql_cursor::sql_cursor(), unprepare(), and username().

◆ adorn_name()

std::string pqxx::connection_base::adorn_name ( const std::string &  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().

◆ await_notification() [1/2]

int pqxx::connection_base::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. Any pending or received notifications are processed as part of the call.

Returns
Number of notifications processed

References pqxx::internal::wait_read().

◆ await_notification() [2/2]

int pqxx::connection_base::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. Any pending or received notifications are processed as part of the call.

Returns
Number of notifications processed

References pqxx::internal::wait_read().

◆ backendpid()

int pqxx::connection_base::backendpid ( ) const
noexcept

Process ID for backend process.

Use with care: connections may be lost and automatically re-established without your knowledge, in which case this process ID may no longer be correct. You may, however, assume that this number remains constant and reliable within the span of a successful backend transaction. If the transaction fails, which may be due to a lost connection, then this number will have become invalid at some point within the transaction.

Returns
Process identifier, or 0 if not currently connected.

Referenced by pqxx::internal::basic_robusttransaction::~basic_robusttransaction().

◆ cancel_query()

void pqxx::connection_base::cancel_query ( )

Attempt to cancel the ongoing query, if any.

◆ close()

void pqxx::connection_base::close ( )
protectednoexcept

◆ dbname()

const char * pqxx::connection_base::dbname ( )

Name of database we're connected to, if any.

Warning
This activates the connection, which may fail with a broken_connection exception.

References activate().

◆ deactivate()

void pqxx::connection_base::deactivate ( )

Explicitly deactivate connection.

Like its counterpart activate(), this method is entirely optional. Calling this function really only makes sense if you won't be using this connection for a while and want to reduce the number of open connections on the database server. There is no particular need to match or pair calls to deactivate() with calls to activate(), but calling deactivate() during a transaction is an error.

References pqxx::connectionpolicy::do_disconnect(), pqxx::internal::reactivation_avoidance_counter::get(), and process_notice().

Referenced by pqxx::internal::reactivation_avoidance_exemption::~reactivation_avoidance_exemption().

◆ disconnect()

void pqxx::connection_base::disconnect ( )
noexcept

Explicitly close connection.

References pqxx::connectionpolicy::do_disconnect().

Referenced by activate().

◆ get_errorhandlers()

std::vector< errorhandler * > pqxx::connection_base::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 activate(), get_notifs(), and is_open().

◆ get_notifs()

int pqxx::connection_base::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.

Returns
Number of notifications processed

References is_open(), and process_notice().

Referenced by pqxx::transaction_base::Begin(), get_errorhandlers(), and prepare_now().

◆ get_variable()

std::string pqxx::connection_base::get_variable ( const std::string &  Var)

Read session variable.

Will try to read the value locally, from the list of variables set with the set_variable function. If that fails, the database is queried.

Warning
Do not mix the set_variable interface with manual setting of variables by executing the corresponding SQL commands, and do not get or set variables while a tablestream or pipeline is active on the same connection.

References pqxx::result::at(), pqxx::connectionpolicy::do_disconnect(), and is_open().

◆ get_verbosity()

error_verbosity pqxx::connection_base::get_verbosity ( ) const
noexcept

Retrieve current error verbosity.

References pqxx::internal::wait_read(), and pqxx::internal::wait_write().

◆ hostname()

const char * pqxx::connection_base::hostname ( )

Address of server, or nullptr if none specified (i.e. default or local)

Warning
This activates the connection, which may fail with a broken_connection exception.

References activate().

◆ inhibit_reactivation()

void pqxx::connection_base::inhibit_reactivation ( bool  inhibit)

Disallow (or permit) connection recovery.

A connection whose underlying socket is not currently connected to the server will normally (re-)establish communication with the server whenever needed, or when the client program requests it (although for reasons of integrity, never inside a transaction; but retrying the whole transaction may implicitly cause the connection to be restored). In normal use this is quite a convenient thing to have and presents a simple, safe, predictable interface.

There is at least one situation where this feature is not desirable, however. Although most session state (prepared statements, session variables) is automatically restored to its working state upon connection reactivation, temporary tables and so-called WITH HOLD cursors (which can live outside transactions) are not.

Cursors that live outside transactions are automatically handled, and the library will quietly ignore requests to deactivate or reactivate connections while they exist; it does not want to give you the illusion of being back in your transaction when in reality you just dropped a cursor. With temporary tables this is not so easy: there is no easy way for the library to detect their creation or track their lifetimes.

So if your program uses temporary tables, and any part of this use happens outside of any database transaction (or spans multiple transactions), some of the work you have done on these tables may unexpectedly be undone if the connection is broken or deactivated while any of these tables exists, and then reactivated or implicitly restored before you are finished with it.

If this describes any part of your program, guard it against unexpected reconnections by inhibiting reconnection at the beginning. And if you want to continue doing work on the connection afterwards that no longer requires the temp tables, you can permit it again to get the benefits of connection reactivation for the remainder of the program.

Parameters
inhibitshould reactivation be inhibited from here on?
Warning
Some connection types (the lazy and asynchronous types) defer completion of the socket-level connection until it is actually needed by the client program. Inhibiting reactivation before this connection is really established will prevent these connection types from doing their work. For those connection types, if you are sure that reactivation needs to be inhibited before any query goes across the connection, activate() the connection first. This will ensure that definite activation happens before you inhibit it.

Referenced by close(), and simulate_failure().

◆ init()

◆ is_open()

bool pqxx::connection_base::is_open ( ) const
noexcept

Is this connection open at the moment?

Warning
This function is not needed in most code. Resist the temptation to check it after opening a connection; instead, rely on the broken_connection exception that will be thrown on connection failure.

Referenced by activate(), close(), pqxx::transaction_base::commit(), get_errorhandlers(), get_notifs(), get_variable(), set_variable(), and trace().

◆ perform()

template<typename TRANSACTOR >
void pqxx::connection_base::perform ( const TRANSACTOR &  T)
Deprecated:
Pre-C++11 transactor function. Use pqxx::perform instead.

This has been superseded by the new transactor framework and pqxx::perform.

Parameters
TThe transactor to be executed.

References perform().

Referenced by perform().

◆ port()

const char * pqxx::connection_base::port ( )

Server port number we're connected to.

Warning
This activates the connection, which may fail with a broken_connection exception.

References activate().

◆ prepare() [1/2]

void pqxx::connection_base::prepare ( const std::string &  name,
const std::string &  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. Note the unusual syntax for passing parameters: every new argument is a parenthesized expression that is simply tacked onto the end of the statement!

using namespace pqxx;
void foo(connection_base &C)
{
C.prepare("findtable", "select * from pg_tables where name=$1");
work W(C);
result R = W.exec_prepared("findtable", "mytable");
if (R.empty()) throw runtime_error("mytable not found!");
}

To save time, prepared statements aren't really registered with the backend until they are first used. If this is not what you want, e.g. because you have very specific realtime requirements, you can use the prepare_now() function to force immediate preparation.

The statement may not be registered with the backend until it is actually used. So if, for example, the statement is syntactically incorrect, you may see a syntax_error here, or later when you try to call the statement, or during a prepare_now() call.

Parameters
nameunique name for the new prepared statement.
definitionSQL statement to prepare.

Referenced by prepare().

◆ prepare() [2/2]

void pqxx::connection_base::prepare ( const std::string &  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().

◆ prepare_now()

void pqxx::connection_base::prepare_now ( const std::string &  name)

Request that prepared statement be registered with the server.

If the statement had already been fully prepared, this will do nothing.

If the connection should break and be transparently restored, then the new connection will again defer registering the statement with the server. Since connections are never restored inside backend transactions, doing this once at the beginning of your transaction ensures that the statement will not be re-registered during that transaction. In most cases, however, it's probably better not to use this and let the connection decide when and whether to register prepared statements that you've defined.

References activate(), and get_notifs().

◆ process_notice() [1/2]

void pqxx::connection_base::process_notice ( const char  msg[])
noexcept

◆ process_notice() [2/2]

void pqxx::connection_base::process_notice ( const std::string &  msg)
noexcept

Invoke notice processor function. Newline at end is recommended.

◆ protocol_version()

int pqxx::connection_base::protocol_version ( ) const
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 are taken into use.

If the connection is broken and restored, the restored connection could possibly use a different server and protocol version. This would normally happen if the server is upgraded without shutting down the client program, for example.

◆ server_version()

int pqxx::connection_base::server_version ( ) const
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.

Warning
When writing version numbers in your code, don't add zero at the beginning! Numbers beginning with zero are interpreted as octal (base-8) in C++. Thus, 070402 is not the same as 70402, and 080000 is not a number at all because there is no digit "8" in octal notation. Use strictly decimal notation when it comes to these version numbers.

Referenced by pqxx::internal::basic_robusttransaction::~basic_robusttransaction().

◆ set_client_encoding()

void pqxx::connection_base::set_client_encoding ( const std::string &  Encoding)

Set client-side character encoding.

Search the PostgreSQL documentation for "multibyte" or "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.

Parameters
EncodingName of the character set encoding to use

References pqxx::perform().

◆ set_variable()

void pqxx::connection_base::set_variable ( const std::string &  Var,
const std::string &  Value 
)

Set session variable.

Set a session variable for this connection, using the SET command. If the connection to the database is lost and recovered, the last-set value will be restored automatically. 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. However nontransaction (which doesn't start a real backend transaction) is an exception.

Warning
Do not mix the set_variable interface with manual setting of variables by executing the corresponding SQL commands, and do not get or set variables while a tablestream or pipeline is active on the same connection.
Parameters
VarVariable to set
ValueValue vor Var to assume: an identifier, a quoted string, or a number.

References is_open().

◆ set_verbosity()

void pqxx::connection_base::set_verbosity ( error_verbosity  verbosity)
noexcept

Set session verbosity.

Set the verbosity of error messages to "terse", "normal" (i.e. 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.

◆ simulate_failure()

void pqxx::connection_base::simulate_failure ( )

Make the connection fail.

Warning
Do not use this except for testing! Breaks the connection in some unspecified, horrible, dirty way to enable failure testing.

Do not use this in normal programs. This is only meant for testing.

References pqxx::connectionpolicy::do_disconnect(), and inhibit_reactivation().

◆ sock()

int pqxx::connection_base::sock ( ) const
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.

Warning
Don't store this value anywhere, and always be prepared for the possibility that, at any given time, there may not be a socket! The socket may change or even go away or be established during any invocation of libpqxx code on the connection, no matter how trivial.

◆ supports()

bool pqxx::connection_base::supports ( capability  c) const
noexcept

Does this connection seem to support the given capability?

Don't try to be smart by caching this information anywhere. Obtaining it is quite fast (especially after the first time) and what's more, a capability may "suddenly" appear or disappear if the connection is broken or deactivated, and then restored. This may happen silently any time no backend transaction is active; if it turns out that the server was upgraded or restored from an older backup, or the new connection goes to a different backend, then the restored session may have different capabilities than were available previously.

Some guesswork is involved in establishing the presence of any capability; try not to rely on this function being exactly right.

Warning
Make sure your connection is active before calling this function, or the answer will always be "no." In particular, if you are using this function on a newly-created lazyconnection, activate the connection first.

◆ trace()

void pqxx::connection_base::trace ( std::FILE *  )
noexcept

Enable tracing to a given output stream, or nullptr to disable.

References pqxx::notification_receiver::channel(), is_open(), and process_notice().

◆ unprepare()

void pqxx::connection_base::unprepare ( const std::string &  name)

Drop prepared statement.

References activate().

◆ username()

const char * pqxx::connection_base::username ( )

Database user ID we're connected under, if any.

Warning
This activates the connection, which may fail with a broken_connection exception.

References activate().

Referenced by pqxx::internal::basic_robusttransaction::~basic_robusttransaction().

◆ wait_read() [1/2]

void pqxx::connection_base::wait_read ( ) const
protected

◆ wait_read() [2/2]

void pqxx::connection_base::wait_read ( long  seconds,
long  microseconds 
) const
protected

◆ wait_write()

void pqxx::connection_base::wait_write ( ) const
protected

Friends And Related Function Documentation

◆ internal::gate::connection_dbtransaction

friend class internal::gate::connection_dbtransaction
friend

◆ internal::gate::connection_errorhandler

friend class internal::gate::connection_errorhandler
friend

◆ internal::gate::connection_largeobject

friend class internal::gate::connection_largeobject
friend

◆ internal::gate::connection_notification_receiver

friend class internal::gate::connection_notification_receiver
friend

◆ internal::gate::connection_parameterized_invocation

friend class internal::gate::connection_parameterized_invocation
friend

◆ internal::gate::connection_pipeline

friend class internal::gate::connection_pipeline
friend

◆ internal::gate::connection_prepare_invocation

friend class internal::gate::connection_prepare_invocation
friend

◆ internal::gate::connection_reactivation_avoidance_exemption

friend class internal::gate::connection_reactivation_avoidance_exemption
friend

◆ internal::gate::connection_sql_cursor

friend class internal::gate::connection_sql_cursor
friend

◆ internal::gate::connection_transaction

friend class internal::gate::connection_transaction
friend

◆ internal::gate::const_connection_largeobject

friend class internal::gate::const_connection_largeobject
friend

The documentation for this class was generated from the following files: