aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/statement-cache.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2011-03-21 17:24:35 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2011-03-21 17:24:35 +0200
commitdac72baef46897b80fc98632cef182fb266a5d60 (patch)
treea90f40a5fac59456c6fecf3d31a008c5a061b955 /odb/sqlite/statement-cache.cxx
parent3af997a875e439e71754fddb67fd60de9f60307b (diff)
Add base SQLite database classes
Diffstat (limited to 'odb/sqlite/statement-cache.cxx')
-rw-r--r--odb/sqlite/statement-cache.cxx26
1 files changed, 26 insertions, 0 deletions
diff --git a/odb/sqlite/statement-cache.cxx b/odb/sqlite/statement-cache.cxx
new file mode 100644
index 0000000..66ef266
--- /dev/null
+++ b/odb/sqlite/statement-cache.cxx
@@ -0,0 +1,26 @@
+// file : odb/sqlite/statement-cache.cxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2011 Code Synthesis Tools CC
+// license : GNU GPL v2; see accompanying LICENSE file
+
+#include <odb/sqlite/statement-cache.hxx>
+
+namespace odb
+{
+ using namespace details;
+
+ namespace sqlite
+ {
+ statement_cache::
+ statement_cache (connection& conn)
+ : conn_ (conn),
+ // String lengths below include '\0', as per SQLite manual
+ // suggestions.
+ //
+ begin_ (new (shared) simple_statement (conn, "BEGIN", 6)),
+ commit_ (new (shared) simple_statement (conn, "COMMIT", 7)),
+ rollback_ (new (shared) simple_statement (conn, "ROLLBACK", 9))
+ {
+ }
+ }
+}