summaryrefslogtreecommitdiff
path: root/content/software/sqlitexx.md
diff options
context:
space:
mode:
Diffstat (limited to 'content/software/sqlitexx.md')
-rw-r--r--content/software/sqlitexx.md19
1 files changed, 17 insertions, 2 deletions
diff --git a/content/software/sqlitexx.md b/content/software/sqlitexx.md
index 5801ffd..6272359 100644
--- a/content/software/sqlitexx.md
+++ b/content/software/sqlitexx.md
@@ -3,7 +3,22 @@ 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://wiki.github.com/andreasbaumann/sqlitexx/](http://wiki.github.com/andreasbaumann/sqlitexx/).
+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.
+