使用SOCI c ++数据库访问库的boost元组行集问题

时间:2012-01-30 13:51:45

标签: c++ orm soci

使用最新的soci和boost库的元组rowset时出现编译错误。

我在网上找到了一个例子,但它没有使用我使用的SOCI版本进行编译,这是最新版本。

造成问题的部分是这一部分:

typedef std::vector<boost::tuple<double, double> > V;

soci::rowset<boost::tuple<double, double> > rows
        = sql.prepare << "select x(location),y(location) from cities";

以下是我从网上示例中获得的完整代码:

#include <soci.h>
#include <soci-postgresql.h>
#include <boost/algorithm/string.hpp>
#include <boost/optional.hpp>
#include <boost/timer.hpp>
#include <boost/random.hpp>
#include <boost/tuple/tuple.hpp>
#include <iostream>
#include <istream>
#include <ostream>
#include <sstream>
#include <string>
#include <exception>

int main()
{
    try
    {
        soci::session sql(soci::postgresql, "dbname=ggl user=ggl password=ggl");

    int count;
    sql << "select count(*) from cities", soci::into(count);
    std::cout << "# Capitals: " << count << std::endl;

    typedef std::vector<boost::tuple<double, double> > V;

    soci::rowset<boost::tuple<double, double> > rows
        = sql.prepare << "select x(location),y(location) from cities";
    V vec;
    std::copy(rows.begin(), rows.end(), std::back_inserter(vec));

    for (V::const_iterator it = vec.begin(); it != vec.end(); ++it)
    {
        std::cout << it->get<0>() << " " << it->get<1>() << std::endl;
    }
}
catch (std::exception const &e)
{
    std::cerr << "Error: " << e.what() << '\n';
}
return 0;

}

在以下行中失败:

   soci::rowset<boost::tuple<double, double> > rows
            = sql.prepare << "select x(location),y(location) from cities";

这是我不太明白的错误:

   g++  -c  "/home/ubuntu/dev/testSoci/test.cpp" -g -O0 -Wall  -o ./Debug/test.o -I./include -I/home/ubuntu/dev/tools/QxOrm/include -I/usr/share/qt4/include -I/home/ubuntu/dev/tools/boost_1_48_0  -I. -I. -I/home/ubuntu/dev/tools/soci-3.1.0/core -I/home/ubuntu/dev/tools/soci-3.1.0/backends/postgresql -I/usr/include/postgresql -I/home/ubuntu/dev/tools/boost_1_48_0/boost 
In file included from /home/ubuntu/dev/tools/soci-3.1.0/core/into-type.h:13,
                 from /home/ubuntu/dev/tools/soci-3.1.0/core/blob-exchange.h:12,
                 from /home/ubuntu/dev/tools/soci-3.1.0/core/soci.h:18,
                 from /home/ubuntu/dev/testSoci/test.cpp:21:
/home/ubuntu/dev/tools/soci-3.1.0/core/exchange-traits.h: In instantiation of ‘soci::details::exchange_traits<boost::tuples::tuple<double, double, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type> >’:
/home/ubuntu/dev/tools/soci-3.1.0/core/into.h:29:   instantiated from ‘soci::details::into_type_ptr soci::into(T&) [with T = boost::tuples::tuple<double, double, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type>]’
/home/ubuntu/dev/tools/soci-3.1.0/core/rowset.h:125:   instantiated from ‘soci::details::rowset_impl<T>::rowset_impl(const soci::details::prepare_temp_type&) [with T = boost::tuples::tuple<double, double, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type>]’
/home/ubuntu/dev/tools/soci-3.1.0/core/rowset.h:185:   instantiated from ‘soci::rowset<T>::rowset(const soci::details::prepare_temp_type&) [with T = boost::tuples::tuple<double, double, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type>]’
/home/ubuntu/dev/testSoci/test.cpp:51:   instantiated from here
/home/ubuntu/dev/tools/soci-3.1.0/core/exchange-traits.h:34: error: incomplete type ‘soci::details::exchange_traits<boost::tuples::tuple<double, double, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type, boost::tuples::null_type> >’ used in nested name specifier
make[1]: *** [Debug/test.o] Error 1

知道可能是什么原因?

非常感谢! Ludovic


解决方案是

1 /添加括号        soci :: rowset&gt;行                 =(sql.prepare&lt;&lt;“从城市中选择x(位置),y(位置)”);

2 /做什么建议答案:    #include或#define

1 个答案:

答案 0 :(得分:1)

您是否尝试过添加此标题?

#include <boost-tuple.h>

或者,您可以使用:

#define SOCI_USE_BOOST

包括soci.h之前