libpqxx
Deprecated List
Class pqxx::basic_connection< CONNECTPOLICY >
In libpqxx 7, all built-in connection types will be implemented as a single class. You'll specify the connection policy as an optional constructor argument.
Class pqxx::basic_connection_base< CONNECTPOLICY >
In libpqxx 7, all built-in connection types will be implemented as a single class. You'll specify the connection policy as an optional constructor argument.
Member pqxx::connection_base::activate ()
Explicitly activate deferred or deactivated connection.
Member pqxx::connection_base::deactivate ()
Explicitly deactivate connection.
Member pqxx::connection_base::inhibit_reactivation (bool inhibit)
Disallow (or permit) connection recovery
Member pqxx::connection_base::perform (const TRANSACTOR &T, int Attempts)
Pre-C++11 transactor function.
Member pqxx::connection_base::perform (const TRANSACTOR &T)
Pre-C++11 transactor function. Use pqxx::perform instead.
Class pqxx::internal::parameterized_invocation
Use exec_params and friends instead.
Class pqxx::prepare::invocation
As of 6.0, use transaction_base::exec_prepared and friends.
Member pqxx::row::row (result r, size_t i) noexcept
Do not use this constructor. It will become private.
Class pqxx::tablereader
Use stream_from instead.
Class pqxx::tablestream
Use stream_from and stream_to instead.
Class pqxx::tablewriter
Use stream_to instead.
Member pqxx::thread_safety_model::have_safe_strerror
Is error reporting thread-safe? Now always true.
Member pqxx::thread_safety_model::safe_query_cancel
Query cancel is always thread-safe now.
Member pqxx::thread_safety_model::safe_result_copy
Always thread-safe to copy a 'result' or 'binarystring' now.
Member pqxx::transaction_base::parameterized (const std::string &query)
Use exec_params instead.
Member pqxx::transaction_base::prepared (const std::string &statement=std::string{})
Use exec_prepared instead.
Class pqxx::transactor< TRANSACTION >
Pre-C++11 wrapper for automatically retrying transactions.