libpqxx
The C++ client library for PostgreSQL
|
Base class for error-handler callbacks. More...
Public Member Functions | |
errorhandler (connection &) | |
virtual bool | operator() (char const msg[]) noexcept=0 |
errorhandler (errorhandler const &)=delete | |
errorhandler & | operator= (errorhandler const &)=delete |
Friends | |
class | internal::gate::errorhandler_connection |
Base class for error-handler callbacks.
To receive errors and warnings from a connection, subclass this with your own error-handler functor, and instantiate it for the connection. Destroying the handler un-registers it.
A connection can have multiple error handlers at the same time. When the database connection emits an error or warning message, it passes the message to each error handler, starting with the most recently registered one and progressing towards the oldest one. However an error handler may also instruct the connection not to pass the message to further handlers by returning "false."
|
explicit |
Implementation of pqxx::errorhandler and helpers.
pqxx::errorhandler allows programs to receive errors and warnings.
Copyright (c) 2000-2024, Jeroen T. Vermeulen.
See COPYING for copyright license. If you did not receive a file called COPYING with this source code, please notify the distributor of this mistake, or contact the author.
|
pure virtualnoexcept |
Define in subclass: receive an error or warning message from the database.
Implemented in pqxx::quiet_errorhandler.