sqlitecpp 3.3.0-1 source package in Ubuntu

Changelog

sqlitecpp (3.3.0-1) unstable; urgency=medium

  * New upstream version

 -- Bastian Germann <email address hidden>  Mon, 19 Jun 2023 01:36:20 +0200

Upload details

Uploaded by:
Bastian Germann
Uploaded to:
Sid
Original maintainer:
Bastian Germann
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc

Downloads

File Size SHA-256 Checksum
sqlitecpp_3.3.0-1.dsc 1.8 KiB d3e853283edd20e12221a469065d4159be0c57e98c803f0b97a1b63d7d43fbc5
sqlitecpp_3.3.0.orig.tar.gz 2.5 MiB 4a37dd63cf91235ea2ef4494054700c144b3f96e93a330ef61ed53d106353e9c
sqlitecpp_3.3.0-1.debian.tar.xz 3.3 KiB d6357be7830eadbf1edcf3b44881cafa7cd5f82e62b26f46a7ce4c493cee700e

Available diffs

No changes file available.

Binary packages built by this source

libsqlitecpp-dev: smart and easy to use C++ SQLite3 wrapper

 SQLiteC++ offers an encapsulation around the native C APIs of SQLite, with a
 few intuitive and well documented C++ classes.
 .
 The goals of SQLiteC++ are:
  - to offer the best of the existing simple C++ SQLite wrappers
  - to be elegantly written with good C++ design, STL, exceptions and RAII idiom
  - to keep dependencies to a minimum (STL and SQLite3)
  - to be portable
  - to be light and fast
  - to be thread-safe only as much as SQLite “Multi-thread” mode (see below)
  - to have a good unit test coverage
  - to use API names sticking with those of the SQLite library
  - to be well documented with Doxygen tags, and with some good examples
  - to be well maintained