在C++中使用PostgreSQL時,可以通過以下方法來處理錯誤:
try {
// 調用PostgreSQL API
} catch (const std::exception &e) {
std::cerr << "Error: " << e.what() << std::endl;
}
PGresult *res = PQexec(conn, "SELECT * FROM table");
if (PQresultStatus(res) != PGRES_TUPLES_OK) {
std::cerr << "Error: " << PQresultErrorMessage(res) << std::endl;
PQclear(res);
} else {
// 處理結果集
}
void notice_processor(void *arg, const char *message) {
std::cerr << "Notice: " << message << std::endl;
}
PQsetNoticeProcessor(conn, notice_processor, NULL);
通過以上方法,可以有效地處理PostgreSQL的錯誤信息,保證程序的穩定性和可靠性。