diff options
Diffstat (limited to 'odb/database.txx')
-rw-r--r-- | odb/database.txx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/odb/database.txx b/odb/database.txx index 86336ea..f5449b6 100644 --- a/odb/database.txx +++ b/odb/database.txx @@ -64,12 +64,12 @@ namespace odb template <typename T> void database:: - store (T& obj) + update (T& obj) { if (!transaction::has_current ()) throw not_in_transaction (); - object_traits<T>::store (*this, obj); + object_traits<T>::update (*this, obj); } template <typename T> |