sqlitecpp 3.3.1-1 source package in Ubuntu

Changelog

sqlitecpp (3.3.1-1) unstable; urgency=medium

  * QA upload
  * New upstream version
  * Orphan the package

 -- Bastian Germann <email address hidden>  Tue, 07 Nov 2023 00:01:50 +0100

Upload details

Uploaded by:
Debian QA Group
Uploaded to:
Sid
Original maintainer:
Debian QA Group
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Oracular release universe misc
Noble release universe misc

Downloads

File Size SHA-256 Checksum
sqlitecpp_3.3.1-1.dsc 1.8 KiB 14775513734d211a9010129ac2362499d02776fdd1f92bc6dd3542c35b505766
sqlitecpp_3.3.1.orig.tar.gz 2.5 MiB 71f990f9fb4b004533b6859ce40729af823b87fe691dd99ca084a7fd40db54b9
sqlitecpp_3.3.1-1.debian.tar.xz 3.4 KiB 3c5d6ed72182ff21451850c4711b89a8836f8ca39a6ca9db7e937ed2efae5d9d

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