Skip to content

rbock/sqlpp23

Repository files navigation

sqlpp23

sqlpp23 is a type safe embedded domain specific language for SQL queries and results in C++. It allows you to write SQL in the form of C++ expression:

  • tables, columns, result fields are represented as structs or data members
  • statements and clauses are constructed by functions
  • Your IDE can help you write SQL in C++
  • Your compiler will find a lot of typical mistakes long before they hit integration tests or even production, e.g.
    • typos
    • comparing apples to oranges
    • a missing table in from()
    • missing a non-default column in insert_into()
    • selecting a mix of aggregates and non-aggregates
    • differences in SQL dialects from one database backend to the next, see below

sqlpp23’s core is vendor-neutral.

Specific traits of databases (e.g. unsupported or non-standard features) are handled by connector libraries. Connector libraries can inform you and your IDE of missing features at compile time. They also interpret expressions specifically where needed. For example, the connector could use the operator|| or the concat method for string concatenation without your being required to change the statement.

Connectors for MariaDB, MySQL, PostgreSQL, sqlite3, sqlcipher are included in this repository.

Documentation is found in docs.

Examples:

Let's assume we have a database connection object db and a table object foo representing something like

CREATE TABLE foo (
    id bigint NOT NULL,
    name varchar(50),
    hasFun bool NOT NULL
);

insert

db(insert_into(foo).set(foo.id = 17, foo.name = "bar", foo.hasFun = true));

update

db(update(foo).set(foo.name = std::nullopt).where(foo.name != "nobody"));

delete

db(remove_from(foo).where(not foo.hasFun));

select

// selecting zero or more results, iterating over the results
for (const auto& row : db(select(foo.id, foo.name, foo.hasFun)
                          .from(foo)
                          .where(foo.id > 17 and foo.name.like("%bar%"))))
{
  std::cout << row.id << '\n';                    // int64_t
  std::cout << row.name.value_or("NULL") << '\n'; // std::optional<std::string_view>
  std::cout << row.hasFun() << '\n';              // bool
}

database specfic

  for (const auto &row : db(sql::insert_into(foo)
                                .set(foo.id = 7, foo.name = std::nullopt, foo.hasFun = false)
                                .on_conflict(foo.id)
                                .do_update(foo.name = "updated")
                                .where(foo.id > 17)
                                .returning(foo.name))) {
    std::cout << row.name.value_or("NULL") << '\n';
  }

Requirements:

Compiler: sqlpp23 makes use of C++23 and requires a recent compiler and standard library.

License:

sqlpp23 is distributed under the BSD 2-Clause License.

Getting involved:

Feature requests, bug reports, contributions to code or documentation are most welcome.

About

A type safe SQL library for C++

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published