- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
... 并保存成自定义对象类型?我正在使用 PostgreSQL。当我将所有内容都放在一个文件中时,它就可以工作了。但我想把它分成类文件,就像你在用 cpp 编写时所做的那样。当我将我的代码分成 *.h 和 *.cpp 文件时,我遇到了错误。
这是我的文件:
测试.h
class MyInt
{
public:
MyInt();
MyInt(int i);
void set(int i);
int get() const;
private:
int i_;
};
测试.cpp
#include "test.h"
#include <soci.h>
#include <postgresql/soci-postgresql.h>
MyInt::MyInt()
{
}
MyInt::MyInt(int i)
{
this->i_ = i;
}
int MyInt::get() const
{
return this->i_;
}
void MyInt::set(int i)
{
this->i_ - i;
}
namespace soci
{
template <>
struct type_conversion<MyInt>
{
typedef int base_type;
static void from_base(int i, soci::indicator ind, MyInt & mi)
{
if (ind == soci::i_null)
{
throw soci_error("Null value not allowed for this type");
}
mi.set(i);
}
static void to_base(const MyInt & mi, int & i, soci::indicator & ind)
{
i = mi.get();
ind = soci::i_ok;
}
};
}
main.cpp
#include <iostream>
#include "test.h"
int main(int argc, char **argv)
{
MyInt i;
sql.open(soci::postgresql, "dbname=mydb user=postgres password=postgrespass");
sql << "SELECT count(*) FROM person;", soci::into(i);
std::cout << "We have " << i.get() << " persons in the database.\n";
sql.close();
return 0;
}
我是这样编译的:
g++ main_test.cpp test.h test.cpp -o App -lsoci_core -lsoci_postgresql -ldl -lpq -I /usr/local/include/soci -I /usr/include/postgresql
并得到这些错误:
In file included from /usr/local/include/soci/into-type.h:13:0,
from /usr/local/include/soci/blob-exchange.h:12,
from /usr/local/include/soci/soci.h:18,
from main_test.cpp:3:
/usr/local/include/soci/exchange-traits.h: In instantiation of â€soci::details::exchange_traits<MyInt>’:
/usr/local/include/soci/into.h:29:60: instantiated from â€soci::details::into_type_ptr soci::into(T&) [with T = MyInt, soci::details::into_type_ptr = soci::details::type_ptr<soci::details::into_type_base>]’
main_test.cpp:29:59: instantiated from here
/usr/local/include/soci/exchange-traits.h:35:5: error: incomplete type â€soci::details::exchange_traits<MyInt>’ used in nested name specifier
上述问题已解决,请查看@JohnBandela 的回答。
最佳答案
你专攻 type_conversion 的代码
template<>
struct type_conversion<MyInt>
需要在 test.h 而不是 test.cpp 中。问题是如果你像现在一样把它放在 test.cpp 中,它在你使用 SOCI 的 main.cpp 中是不可见的
关于c++ - 如何使用 SOCI 从数据库中获取整行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13633580/
我真的很困惑,我被这个问题困住了,希望你能帮助我: 我使用:Windows 8.1、Visual Studio Express 2013 和 SOCI 3.2.2 我已经编译了 libsoci_mys
我想从名为“person”的表中获取行。我想借助指标来做到这一点,以避免在该人没有名字时出现异常。如何做到这一点? 我写的代码: try { soci::statement st = (sql.pre
我正在尝试使用 SOCI 库来轻松访问 MySQL,但我无法安装该库。 到目前为止我所做的是: 创建项目并使用 CMake 编译 将我的项目链接到编译后创建的 lib/release 目录。 将我的项
我有这样一个函数: CREATE OR REPLACE FUNCTION get_path_set_1(IN pathset_id_in character varying, OUT id chara
我使用 Soci进行数据库查询。现在我需要一个自定义结果集类,它将环绕 soci::rowset。我无法按照下面的代码方式让它工作,仅仅是因为复制构造函数在 soci 中是私有(private)的(根
我正面临一个烦人的问题,这个问题让我有一段时间没有编程了。我打算开始一个个人项目,在这个项目中我需要使用数据库来存储某些信息,我决定使用 SQLite,但是我不喜欢 C-ish API,所以我在 SQ
我正在使用 SOCI 访问 PostgreSQL 数据库。我要插入并从中选择的一个特定表(目前)有 72 列。我的问题是如何最好地处理这么多列? 我已经确定,对于选择,使用 SOCI 动态结果集可能是
假设我有以下功能。如果出现无效参数或异常,该函数必须以空 rowset 退出。 rowset SelectAllFromTable(string tableName) { session sq
在 soci ( http://soci.sourceforge.net/ ) 中,可以一次执行多个 SQL 语句吗?例如: session 26; update my_option_table s
我使用 SOCI 连接到数据库库,我想获取数据库故障转移事件以用于日志记录。我不确定要实现什么接口(interface)以及如何进行回调注册。 SOCI有这样的支持吗? 最佳答案 SOCI 唯一支持的
... 并保存成自定义对象类型?我正在使用 PostgreSQL。当我将所有内容都放在一个文件中时,它就可以工作了。但我想把它分成类文件,就像你在用 cpp 编写时所做的那样。当我将我的代码分成 *.
我正在使用 soci 让我的应用程序与数据库交互,目前我使用 MySQL 服务器进行测试。我已将 SOCI 包装到简单的类中,在我类的 Connect 方法中调用 session.open() m_s
目前我正在编写一个 C++ 应用程序,我必须在其中连接到 SQLite 数据库。我搜索图书馆并找到 SOCI,我不得不说:我喜欢它。流语法和映射非常棒。但是我有一个问题: 我有一个 Event 类,我
我扩展了我的类(来自这个问题:How to get a whole row from database using SOCI?)以拥有两个私有(private)成员,还添加了 getter 和 set
以下代码:生成错误消息,如下: bool UACmUsers::GetUser(int userid) { soci::session sql(dbU::Connection());
我使用 soci 库访问 sqlite3 数据库: rowset rs = (sql.prepare get(1); // ... } (这不是我的实际代码;它已大大简化以描述问题。) 现在,
我正在尝试构建 SOCI 库以与 PostgreSQL 一起运行。我遵循了以下步骤: 在 Ubutu 15.10 中安装 PostgreSQL 下载 SOCI 源代码 提取 SOCI 代码 然后我运行
我使用带有 C++ 的 soci 来访问我的数据库。是否可以修改以下表达式以获取赋予该表达式添加的行的新主键? *dbSession << "insert into myTable(myRow) v
我最近为我的项目安装了 SOCI 库,因为它需要使用 SQLite 数据库。我试图获取行集,但出现了奇怪的错误: "c:\mingw\include\soci\exchange-traits.h:35
假设我有两个具有多对多关系的表(即,第三个表仅用于关系)。 SOCI 是否支持语句中不同类型的“连接”? 如果是,它是否适用于所有数据库(在文档中称为后端)? 谢谢! 最佳答案 使用 SOCI,您仍然
我是一名优秀的程序员,十分优秀!