ormpp icon indicating copy to clipboard operation
ormpp copied to clipboard

modern C++ ORM, C++17, support mysql, postgresql,sqlite

Results 33 ormpp issues
Sort by recently updated
recently updated
newest added

如何更换database USE xxx 报错:This command is not supported in the prepared statement protocol yet

uint64_t not supported (int64_t is not enough in some cases)

环境: Windows 11 VS 2022 C++20 下边是我写的测试代码: ` #define NOMINMAX #include #include #include #include using namespace ormpp; struct TerminalEntity { int id; std::wstring name; std::wstring ip_v4; std::wstring mac; std::wstring cpu_sn;...