diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2013-09-02 14:40:50 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2013-09-02 14:40:50 +0200 |
commit | e8b23f12981a754757c49471f4e4a2376368909b (patch) | |
tree | 4977861a21b253b4fe7de43ba76e5d8f270997df /sqlite/transaction/test.hxx | |
parent | dcb6d84266a0b291781855cf623aa4d4c395f14d (diff) |
Handle SQLite commit failures that don't automatically rollback transaction
Diffstat (limited to 'sqlite/transaction/test.hxx')
-rw-r--r-- | sqlite/transaction/test.hxx | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/sqlite/transaction/test.hxx b/sqlite/transaction/test.hxx new file mode 100644 index 0000000..ae47107 --- /dev/null +++ b/sqlite/transaction/test.hxx @@ -0,0 +1,27 @@ +// file : sqlite/transaction/test.hxx +// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC +// license : GNU GPL v2; see accompanying LICENSE file + +#ifndef TEST_HXX +#define TEST_HXX + +#include <odb/core.hxx> +#include <odb/lazy-ptr.hxx> + +#pragma db object +struct object1 +{ + #pragma db id + unsigned long id_; +}; + +#pragma db object +struct object +{ + #pragma db id auto + unsigned long id_; + + odb::lazy_ptr<object1> p; +}; + +#endif // TEST_HXX |