Configure default connection information to the database
To connect to the database you need to provide connection string that library uses to establish connection and you can check if it is alive in the following way
.value = std::format("DRIVER=SQLite3;Database=test.sqlite")
});
if (!sqlConnection.IsAlive())
{
std::println("Failed to connect to the database: {}",
std::abort();
}
Represents a connection to a SQL database.
static void SetDefaultConnectionString(SqlConnectionString const &connectionString) noexcept
Represents an ODBC connection string.
static SqlErrorInfo fromConnectionHandle(SQLHDBC hDbc)
Constructs an ODBC error info object from the given ODBC connection handle.
Raw SQL Queries
To directly make a call to the database use ExecuteDirect
function, for example
stmt.
ExecuteDirect(R
"("SELECT "a", "b", "c" FROM "That" ORDER BY "That"."b" DESC)"));
while (stmt.FetchRow())
{
auto a = stmt.GetColumn<int>(1);
auto b = stmt.GetColumn<int>(2);
auto c = stmt.GetColumn<int>(3);
std::println("{}|{}|{}", a, b,c);
}
High level API for (prepared) raw SQL statements.
LIGHTWEIGHT_API void ExecuteDirect(std::string_view const &query, std::source_location location=std::source_location::current())
Executes the given query directly.
Prepared Statements
You can also use prepared statements to execute queries, for example
struct Record { int a; int b; int c; };
stmt.
Prepare(
"SELECT a, b, c FROM That WHERE a = ? OR b = ?");
stmt.Execute(42, 43);
auto record = Record {};
std::println("{}|{}|{}", a, b, c);
API for reading an SQL query result set.
LIGHTWEIGHT_FORCE_INLINE void BindOutputColumns(Args *... args)
LIGHTWEIGHT_FORCE_INLINE bool FetchRow()
Fetches the next row of the result set.
LIGHTWEIGHT_API void Prepare(std::string_view query) &
SQL Query Builder
Or construct statement using SqlQueryBuilder
auto const sqlQuery = stmt.
Query(
"That")
SqlResultOrdering::DESCENDING)
.All()
stmt.Prepare(sqlQuery);
stmt.Execute();
while(stmt.FetchRow())
{
auto a = stmt.GetColumn<int>(1);
auto b = stmt.GetColumn<int>(2);
auto c = stmt.GetColumn<int>(3);
}
LIGHTWEIGHT_API SqlSelectQueryBuilder Select() noexcept
Initiates SELECT query building.
SqlSelectQueryBuilder & Fields(std::string_view const &firstField, MoreFields &&... moreFields)
Adds a sequence of columns to the SELECT clause.
LIGHTWEIGHT_API SqlSelectQueryBuilder & Field(std::string_view const &fieldName)
Adds a single column to the SELECT clause.
LIGHTWEIGHT_API SqlQueryBuilder Query(std::string_view const &table={}) const
Creates a new query builder for the given table, compatible with the SQL server being connected.
SqlQualifiedTableColumnName represents a column name qualified with a table name.
For more info see SqlQuery
and SqlQueryFormatter
documentation
High level Data Mapping
The DataMapper
provides a higher-level abstraction for interacting with databases. It simplifies operations by automatically creating tables based on the specified type and enabling data retrieval through straightforward method calls. For more info see DataMapper
documentation
struct Person
{
};
{
auto person = Person {};
person.name = "John Doe";
person.is_active = true;
person.age = 25;
if (
auto const po = dm.
QuerySingle<Person>(person.id); po)
auto const persons = dm.
Query<Person>();
std::println("|{}|{}|", person.name, person.age);
}
Main API for mapping records to and from the database using high level C++ syntax.
std::vector< Record > Query(SqlSelectQueryBuilder::ComposedQuery const &selectQuery, InputParameters &&... inputParameters)
Queries multiple records from the database, based on the given query.
SqlConnection const & Connection() const noexcept
Returns the connection reference used by this data mapper.
static std::string Inspect(Record const &record)
Constructs a human readable string representation of the given record.
void CreateTable()
Creates the table for the given record type.
RecordPrimaryKeyType< Record > Create(Record &record)
Creates a new record in the database.
std::optional< Record > QuerySingle(SqlSelectQueryBuilder selectQuery, Args &&... args)
Queries a single record from the database based on the given query.
void Update(Record &record)
Updates the record in the database.
std::size_t Delete(Record const &record)
Deletes the record from the database.
SQL query result row iterator.
Represents a single column in a table.
Simple row retrieval via structs
When only read access is needed, you can use a simple struct
to represent the row, and also do not need to wrap the fields into Field<>
template. The struct
must have fields that match the columns in the query. The fields can be of any type that can be converted from the column type. The struct can have more fields than the columns in the query, but the fields that match the columns must be in the same order as the columns in the query.
struct SimpleStruct
{
uint64_t pkFromA;
uint64_t pkFromB;
};
{
if (
auto maybeObject = dm.
Query<SimpleString>(
"SELECT A.pk, B.pk, A.c1, A.c2, B.c1, B.c2 FROM A LEFT JOIN B ON A.pk = B.pk"); maybeObject)
))
{
for (auto const& obj : *maybeObject)
}
}