5#if defined(_WIN32) || defined(_WIN64)
10#include "SqlConnectInfo.hpp"
11#include "SqlError.hpp"
12#include "SqlLogger.hpp"
13#include "SqlServerType.hpp"
24#include <system_error>
72 static
void SetPostConnectedHook(std::function<
void(
SqlConnection&)> hook);
75 static
void ResetPostConnectedHook();
81 [[nodiscard]] uint64_t ConnectionId() const noexcept
83 return m_connectionId;
105 [[nodiscard]] std::
string DatabaseName() const;
108 [[nodiscard]] std::
string UserName() const;
111 [[nodiscard]] std::
string ServerName() const;
114 [[nodiscard]] std::
string ServerVersion() const;
117 [[nodiscard]] SqlServerType ServerType() const noexcept;
141 [[nodiscard]]
bool TransactionsAllowed() const noexcept;
144 [[nodiscard]]
bool IsAlive() const noexcept;
150 [[nodiscard]] SQLHDBC NativeHandle() const noexcept
156 [[nodiscard]] std::chrono::steady_clock::time_point
LastUsed() const noexcept;
159 void SetLastUsed(std::chrono::steady_clock::time_point lastUsed) noexcept;
162 void RequireSuccess(SQLRETURN sqlResult,
163 std::source_location sourceLocation = std::source_location::current()) const;
171 uint64_t m_connectionId;
172 SqlServerType m_serverType = SqlServerType::UNKNOWN;
186 return *m_queryFormatter;
Represents a connection to a SQL database.
SqlConnection()
Constructs a new SQL connection to the default connection.
SqlServerType ServerType() const noexcept
Retrieves the type of the server.
SqlConnection(std::optional< SqlConnectionString > connectInfo)
Constructs a new SQL connection to the given connect informaton.
SqlQueryBuilder QueryAs(std::string_view const &table, std::string_view const &tableAlias) const
bool TransactionActive() const noexcept
Tests if a transaction is active.
std::chrono::steady_clock::time_point LastUsed() const noexcept
Retrieves the last time the connection was used.
SqlMigrationQueryBuilder Migration() const
Creates a new migration query builder, compatible the current connection.
SqlQueryFormatter const & QueryFormatter() const noexcept
Retrieves a query formatter suitable for the SQL server being connected.
void Close() noexcept
Closes the connection (attempting to put it back into the connect[[ion pool).
Query builder for building SQL migration queries.
API Entry point for building SQL queries.
Represents a connection data source as a DSN, username, password, and timeout.
Represents an ODBC connection string.
Represents an ODBC SQL error.