6#include "SqlDataBinder.hpp"
9#include <source_location>
43 virtual void OnWarning(std::string_view
const& message) = 0;
46 virtual void OnError(SqlError errorCode, std::source_location sourceLocation = std::source_location::current()) = 0;
50 std::source_location sourceLocation = std::source_location::current()) = 0;
74 virtual void OnPrepare(std::string_view
const& query) = 0;
80 if (_supportsBindLogging)
82 using value_type = std::remove_cvref_t<T>;
83 if constexpr (SqlDataBinderSupportsInspect<value_type>)
85 OnBind(name, std::string(SqlDataBinder<value_type>::Inspect(std::forward<T>(value))));
91 virtual void OnBind(std::string_view
const& name, std::string value) = 0;
94 virtual void OnExecute(std::string_view
const& query) = 0;
125 bool _supportsBindLogging = false;
131 void OnWarning(std::string_view
const& )
override {}
132 void OnError(SqlError , std::source_location )
override {}
133 void OnError(
SqlErrorInfo const& , std::source_location )
override {}
134 void OnScopedTimerStart(std::string
const& )
override {}
135 void OnScopedTimerStop(std::string
const& )
override {}
140 void OnExecuteDirect(std::string_view
const& )
override {}
141 void OnPrepare(std::string_view
const& )
override {}
142 void OnBind(std::string_view
const& , std::string )
override {}
143 void OnExecute(std::string_view
const& )
override {}
144 void OnExecuteBatch()
override {}
145 void OnFetchRow()
override {}
146 void OnFetchEnd()
override {}
159 _tag { std::move(tag) }
Represents a connection to a SQL database.
Represents a logger for SQL operations.
virtual void OnScopedTimerStart(std::string const &tag)=0
Invoked when a scoped code region needs to be timed and logged. The region starts with this call.
SqlLogger(SupportBindLogging supportBindLogging)
virtual void OnFetchRow()=0
Invoked when a row is fetched.
virtual void OnScopedTimerStop(std::string const &tag)=0
Invoked when a scoped code region needs to be timed and logged. The region ends with this call.
virtual void OnExecute(std::string_view const &query)=0
Invoked when a prepared query is executed.
virtual void OnPrepare(std::string_view const &query)=0
Invoked when a query is prepared.
static Null & NullLogger() noexcept
Retrieves a null logger that does nothing.
virtual void OnError(SqlError errorCode, std::source_location sourceLocation=std::source_location::current())=0
Invoked on ODBC SQL error occurred.
void OnBindInputParameter(std::string_view const &name, T &&value)
Invoked when an input parameter is bound.
virtual void OnError(SqlErrorInfo const &errorInfo, std::source_location sourceLocation=std::source_location::current())=0
Invoked an ODBC SQL error occurred, with extended error information.
virtual void OnBind(std::string_view const &name, std::string value)=0
Invoked when an input parameter is bound, by name.
virtual void OnConnectionIdle(SqlConnection const &connection)=0
Invoked when a connection is idle.
SupportBindLogging
Mandates the support for logging bind operations.
virtual void OnFetchEnd()=0
Invoked when fetching is done.
virtual void OnConnectionOpened(SqlConnection const &connection)=0
Invoked when a connection is opened.
virtual void OnExecuteBatch()=0
Invoked when a batch of queries is executed.
virtual void OnExecuteDirect(std::string_view const &query)=0
Invoked when a direct query is executed.
static SqlLogger & GetLogger()
Retrieves the currently configured logger.
virtual void OnConnectionClosed(SqlConnection const &connection)=0
Invoked when a connection is closed.
virtual void OnConnectionReuse(SqlConnection const &connection)=0
Invoked when a connection is reused.
virtual void OnWarning(std::string_view const &message)=0
Invoked on a warning.
Represents an ODBC SQL error.
Represents a value that can be any of the supported SQL data types.