在我的应用程序中,我必须使用 CORBA::WChar*(或等效的 wchar_t*),但我的程序还需要将一些信息保存到 PostgreSQL 数据库中。为了在 C++ 中将数据插入 PostgreSQL,我使用 SOCI。问题在于:
The following types are currently supported for use with into and use expressions:
char (for character values)
short, int, unsigned long, long long, double (for numeric values)
char*, char[], std::string (for string values)
std::tm (for datetime values)
soci::statement (for nested statements and PL/SQL cursors)
soci::blob (for Binary Large OBjects)
soci::row_id (for row identifiers)
所以不支持 wchar_t* 或 wstring ...我需要将 CORBA::WChar (或 wchar_t 或 wchar_t*)转换为字符串。这该怎么做?
我也有宽字符(和字符串)的问题,使用 CodeBlocks 10.5 :
#include <cstdlib>
#include <iostream>
using namespace std;
int main(int argc, char **argv)
{
const wchar_t *val = L"ąśżźćłóń";
wcout << val << "\n";
return 0;
}
显示:
E:\Temp\Untitled1.cpp||In function 'int main(int, char**)':|
E:\Temp\Untitled1.cpp|7|error: converting to execution character set: Invalid argument|
||=== Build finished: 1 errors, 0 warnings ===|
如何解决?
我还需要代码是可移植的,我可以在 unix/linux 和 windows 上运行它。