aboutsummaryrefslogtreecommitdiff
path: root/odb/sqlite/statement-cache.cxx
diff options
context:
space:
mode:
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))
+ {
+ }
+ }
+}