Lightweight 0.1.0
Loading...
Searching...
No Matches
SqlScopedTraceLogger.hpp
1// SPDX-License-Identifier: Apache-2.0
2
3#pragma once
4
5#include "Api.hpp"
6#include "SqlConnection.hpp"
7#include "SqlStatement.hpp"
8
9#include <filesystem>
10
11/// @brief Enables protocol-level ODBC trace logging for the given connection.
12///
13/// The trace logging is active for the lifetime of this object.
14///
15/// The logging output is sent to the standard output stream.
16class LIGHTWEIGHT_API SqlScopedTraceLogger
17{
18 SQLHDBC m_nativeConnection;
19
20 public:
21 explicit SqlScopedTraceLogger(SqlConnection& connection):
23#if defined(_WIN32) || defined(_WIN64)
24 "CONOUT$"
25#else
26 "/dev/stdout"
27#endif
28 )
29 {
30 }
31
32 explicit SqlScopedTraceLogger(SqlStatement& stmt):
34#if defined(_WIN32) || defined(_WIN64)
35 "CONOUT$"
36#else
37 "/dev/stdout"
38#endif
39 )
40 {
41 }
42
43 explicit SqlScopedTraceLogger(SQLHDBC hDbc, std::filesystem::path const& logFile):
44 m_nativeConnection { hDbc }
45 {
46 SQLSetConnectAttrA(m_nativeConnection, SQL_ATTR_TRACEFILE, (SQLPOINTER) logFile.string().c_str(), SQL_NTS);
47 SQLSetConnectAttrA(m_nativeConnection, SQL_ATTR_TRACE, (SQLPOINTER) SQL_OPT_TRACE_ON, SQL_IS_UINTEGER);
48 }
49
51 SqlScopedTraceLogger& operator=(SqlScopedTraceLogger&&) = delete;
53 SqlScopedTraceLogger& operator=(SqlScopedTraceLogger const&) = delete;
54
56 {
57 SQLSetConnectAttrA(m_nativeConnection, SQL_ATTR_TRACE, (SQLPOINTER) SQL_OPT_TRACE_OFF, SQL_IS_UINTEGER);
58 }
59};
Represents a connection to a SQL database.
SQLHDBC NativeHandle() const noexcept
Retrieves the native handle.
Enables protocol-level ODBC trace logging for the given connection.
High level API for (prepared) raw SQL statements.
LIGHTWEIGHT_API SqlConnection & Connection() noexcept
Retrieves the connection associated with this statement.