我在 PostgreSQL 中有一个数据库。而且我有 sql 查询(顺便说一句,它在 PostgreSQL 中工作得很好,所以 sql 代码没有错):
SELECT COUNT(*) as size, creation_date FROM item INNER JOIN raf_item USING (id) INNER JOIN item_detail USING (id) GROUP BY creation_date;
其中创建日期在 PostgreSQL 中定义creation_date Date;
。查询返回,例如(取决于我的数据库中的内容):
size | creation_date
21 | 12-31-2012
18 | 04-03-2002
我正在使用 SOCI + C++ 从这个查询中获取数据。我的整个 C++ 代码:
#include <iostream>
#include <cstdlib>
#include <soci.h>
#include <string>
#include <postgresql/soci-postgresql.h>
using namespace std;
bool connectToDatabase(soci::session &sql, string databaseName, string user, string password)
{
try
{
sql.open(soci::postgresql, "dbname=" +databaseName + " user="+user + " password="+password);
}
catch (soci::postgresql_soci_error const & e)
{
cerr << "PostgreSQL error: " << e.sqlstate() << " " << e.what() << std::endl;
return false;
}
catch (std::exception const & e)
{
cerr << "Some other error: " << e.what() << std::endl;
return false;
}
return true;
}
void getDataFromDatabase(soci::session &sql)
{
soci::row r;
sql << "select count(*) as size, creation_date from item inner join raf_item using (id) inner join item_detail using (id) group by creation_date;", soci::into(r);
for(std::size_t i = 0; i != r.size(); ++i)
{
cout << r.get<int>(i);
tm when = r.get<tm>(i);
cout << asctime(&when);
}
}
int main(int argc, char **argv)
{
soci::session sql;
bool success = connectToDatabase(sql, "testdb", "testuser", "pass");
if (success)
{
cout << "Connected.\n";
getDataFromDatabase(sql);
}
else
cout << "Not connected.\n";
return 0;
}
但是当我尝试运行应用程序时出现此错误(编译很好):
在抛出 'std::bad_cast'
what() 的实例后调用终止:std::bad_cast 中断(核心转储)
请帮忙,当编译很好时,我真的不知道如何解决这个问题。
也许问题是 creation_date 是 DATE 并且 tm 也保持时间......?如果是这样,如何解决这个问题?