Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
1 - 文字列の c_str() メソッドを使用して、基になる C 文字列へのアクセスを取得できます。
if(strcmp(PQgetvalue(res,row,col),date().c_str()) != 0)
2 - さらに良いことに、「完全な C++」にしたい場合は、出力PQgetvalueを文字列に変換し、比較演算子を使用します。
PQgetvalue
if(string(PQgetvalue(res,row,col)) == date())