aboutsummaryrefslogtreecommitdiff
path: root/odb/mssql/database.ixx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2013-08-14 15:16:09 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2013-08-14 15:16:09 +0200
commit88f3f0282bad25c962783defa1e34dcbec60a07c (patch)
tree533b7f48765dc0502f60df58137e8c9364a7cfc9 /odb/mssql/database.ixx
parentfe9276a017e09b1504a3b09002cefae337bd8354 (diff)
Add support for object sections
Sections are an optimization mechanism that allows the partitioning of data members of a persistent class into groups that can be separately loaded and/or updated.
Diffstat (limited to 'odb/mssql/database.ixx')
-rw-r--r--odb/mssql/database.ixx14
1 files changed, 14 insertions, 0 deletions
diff --git a/odb/mssql/database.ixx b/odb/mssql/database.ixx
index 070d15c..cd79eef 100644
--- a/odb/mssql/database.ixx
+++ b/odb/mssql/database.ixx
@@ -108,6 +108,13 @@ namespace odb
}
template <typename T>
+ inline void database::
+ load (T& obj, section& s)
+ {
+ return load_<T, id_mssql> (obj, s);
+ }
+
+ template <typename T>
inline typename object_traits<T>::pointer_type database::
find (const typename object_traits<T>::id_type& id)
{
@@ -249,6 +256,13 @@ namespace odb
template <typename T>
inline void database::
+ update (const T& obj, const section& s)
+ {
+ update_<T, id_mssql> (obj, s);
+ }
+
+ template <typename T>
+ inline void database::
erase (const typename object_traits<T>::id_type& id)
{
return erase_<T, id_mssql> (id);