summaryrefslogtreecommitdiff
path: root/content/software/sqlitexx.md
blob: 62723592047eeb786429fbc23b5c30a215f27669 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
+++
title = "C++ Sqlite interface"
description = "a C++ library for [sqlite3](http://www.sqlite.org) following ideas of [libpqxx](http://pqxx.org/)"
+++

### Description

I saw libpqxx some time ago, the defacto standard C++ API for Postgresql
and was really impressed. Not finding one for Sqlite I decided to write
one. My efforts are accessible at http://git.andreasbaumann.cc/cgit/sqlitexx/.

Current state is work-in-progress. Basic functionality is available as:

- simple connections
- basic transactions
- prepared statements
- result sets
- support for int, double, text types

My apologies for my C++-style (it’s the first thing I write) and also my apologies to the libpqxx developers if I copied ideas and code from their project..
Download

Release 0.0.5 is available at http://www.andreasbaumann.cc/sqlitexx/sqlitexx-0.0.5.tar.gz.