我尝试使用ODB ORM并且我必须坚持使用接口,因此我需要使用const对象并保留它。我不确定ODB API是否允许持久化const对象,因为某些部分似乎已为此做好准备,但它不起作用。
我从gcc收到此错误:
void OdbReportRW::write_object(const MyObject &my_object)
{
odb::core::transaction t{db->begin()};
db->persist(my_object);
t.commit();
}
这是错误,我认为它说my_object不应该是const:
In file included from /usr/local/include/odb/database.hxx:632:0,
from odb_report.hpp:21,
from src/vcf/odb_report.cpp:18:
/usr/local/include/odb/database.txx: In instantiation of ‘typename odb::object_traits<T>::id_type odb::database::persist_(T&) [with T = const MyObject; odb::database_id DB = (odb::database_id)5u; typename odb::object_traits<T>::id_type = long unsigned int]’:
/usr/local/include/odb/database.ixx:167:45: required from ‘typename odb::object_traits<T>::id_type odb::database::persist(const T&) [with T = MyObject; typename odb::object_traits<T>::id_type = long unsigned int]’
src/vcf/odb_report.cpp:134:26: required from here
/usr/local/include/odb/database.txx:38:39: error: no matching function for call to ‘odb::object_traits_impl<MyObject, (odb::database_id)5u>::persist(odb::database&, const MyObject&)’
object_traits::persist (*this, obj);
^
/usr/local/include/odb/database.txx:38:39: note: candidate is:
In file included from src/vcf/odb_report.cpp:27:0:
my-object-error-odb.hxx:247:5: note: static void odb::access::object_traits_impl<MyObject, (odb::database_id)1u>::persist(odb::database&, odb::access::object_traits<MyObject>::object_type&)
persist (database&, object_type&);
^
my-object-odb.hxx:247:5: note: no known conversion for argument 2 from ‘const MyObject’ to ‘odb::access::object_traits<MyObject>::object_type& {aka MyObject&}’
与clang相同的错误,更具描述性:
In file included from src/vcf/odb_report.cpp:18:
In file included from inc/vcf/odb_report.hpp:21:
In file included from /usr/local/include/odb/database.hxx:632:
/usr/local/include/odb/database.txx:38:36: error: binding of reference to type 'object_type' (aka 'MyObject') to a value of type 'const MyObject' drops qualifiers
object_traits::persist (*this, obj);
^~~
/usr/local/include/odb/database.ixx:167:12: note: in instantiation of function template specialization 'odb::database::persist_<const MyObject, 5>' requested here
return persist_<const T, id_common> (obj);
^
src/vcf/odb_report.cpp:134:13: note: in instantiation of function template specialization 'odb::database::persist<MyObject>' requested here
db->persist(my_object);
^
inc/vcf/error-odb.hxx:247:37: note: passing argument to parameter here
persist (database&, object_type&);
^
但是,我可以在数据库界面(来自odb)中看到提供了两种类型的持久性:引用和const引用(以及其他带指针):
// in odb/database.hxx
template <typename T>
typename object_traits<T>::id_type
persist (T& object);
template <typename T>
typename object_traits<T>::id_type
persist (const T& object);
我看到类似的错误(对于find
,而不是persist
),如果类中没有要保留的默认构造函数(MyObject here),但它就在那里,所以这不是问题所在。我已经检查过默认构造函数只在生成的代码中生成一个额外的方法find
。
它在write_object
方法中删除了const说明符,但正如我所说,我必须坚持使用接口。
任何坚持const对象的想法?
答案 0 :(得分:1)
更全面地阅读我发现的文档(http://www.codesynthesis.com/products/odb/doc/manual.xhtml#3.8):
第一个persist()函数需要对持久化实例的常量引用。第二个函数需要一个常量对象指针。这两个函数都只能用于具有应用程序分配的对象ID的对象(第14.4.2节,&#34; auto&#34;)。
的确,我正在使用auto
说明符来处理数据库处理的ID:
// class MyObject
#pragma db id auto
unsigned long id_;
所以似乎我不能同时使用auto id和const引用。