5#if defined(_WIN32) || defined(_WIN64)
9#include "SqlConnection.hpp"
10#include "SqlError.hpp"
13#include <source_location>
27enum class SqlIsolationMode : std::uint8_t
33 ReadUncommitted = SQL_TXN_READ_UNCOMMITTED,
39 ReadCommitted = SQL_TXN_READ_COMMITTED,
45 RepeatableRead = SQL_TXN_REPEATABLE_READ,
51 Serializable = SQL_TXN_SERIALIZABLE,
55enum class SqlTransactionMode : std::uint8_t
69 std::runtime_error(message)
113 SqlTransactionMode defaultMode = SqlTransactionMode::COMMIT,
114 SqlIsolationMode isolationMode = SqlIsolationMode::DriverDefault,
115 std::source_location location = std::source_location::current());
137 [[nodiscard]] SQLHDBC NativeHandle() const noexcept
144 SqlTransactionMode m_defaultMode {};
145 std::source_location m_location {};
150 return *m_connection;
154struct LIGHTWEIGHT_API std::formatter<SqlTransactionMode>: std::formatter<std::string_view>
156 auto format(SqlTransactionMode value, format_context& ctx)
const -> format_context::iterator
158 using namespace std::string_view_literals;
162 case SqlTransactionMode::COMMIT:
165 case SqlTransactionMode::ROLLBACK:
168 case SqlTransactionMode::NONE:
172 return std::formatter<string_view>::format(name, ctx);
177struct LIGHTWEIGHT_API std::formatter<SqlIsolationMode>: std::formatter<std::string_view>
179 auto format(SqlIsolationMode value, format_context& ctx)
const -> format_context::iterator
181 using namespace std::string_view_literals;
185 case SqlIsolationMode::DriverDefault:
186 name =
"DriverDefault";
188 case SqlIsolationMode::ReadUncommitted:
189 name =
"ReadUncommitted";
191 case SqlIsolationMode::ReadCommitted:
192 name =
"ReadCommitted";
194 case SqlIsolationMode::RepeatableRead:
195 name =
"RepeatableRead";
197 case SqlIsolationMode::Serializable:
198 name =
"Serializable";
201 return std::formatter<string_view>::format(name, ctx);
Represents a connection to a SQL database.
SQLHDBC NativeHandle() const noexcept
Retrieves the native handle.
LIGHTWEIGHT_API void Rollback()
Rollback the transaction. Throws an exception if the transaction cannot be rolled back.
LIGHTWEIGHT_API SqlTransaction(SqlConnection &connection, SqlTransactionMode defaultMode=SqlTransactionMode::COMMIT, SqlIsolationMode isolationMode=SqlIsolationMode::DriverDefault, std::source_location location=std::source_location::current())
LIGHTWEIGHT_API bool TryCommit() noexcept
Try to commit the transaction, and return true if successful, falls otherwise.
LIGHTWEIGHT_API bool TryRollback() noexcept
Try to rollback the transaction, and return true if successful, falls otherwise.
SqlConnection & Connection() noexcept
Get the connection object associated with this transaction.
LIGHTWEIGHT_API ~SqlTransaction() noexcept
Automatically commit the transaction if not done so.
LIGHTWEIGHT_API void Commit()
Commit the transaction. Throws an exception if the transaction cannot be committed.