您好,登錄后才能下訂單哦!
在C++中使用PostgreSQL時,可以使用libpqxx庫來處理數據庫操作
sudo apt-get install libpqxx-dev
#include <iostream>
#include <pqxx/pqxx>
int main() {
std::string connection_string = "dbname=your_database_name user=your_username password=your_password host=your_host port=your_port";
try {
pqxx::connection conn(connection_string);
} catch (const pqxx::pqxx_exception &e) {
std::cerr << e.base().what() << std::endl;
return 1;
}
pqxx::nontransaction N(conn);
std::ofstream log_file("log.txt", std::ios::app);
if (!log_file.is_open()) {
std::cerr << "Error opening log file" << std::endl;
return 1;
}
std::string sql = "SELECT * FROM your_table";
pqxx::result R(N.exec(sql));
for (const auto &row : R) {
log_file << row["column_name"].c_str() << "\t" << row["another_column_name"].c_str() << std::endl;
}
log_file.close();
conn.disconnect();
g++ main.cpp -o main -lpqxx -lpq
./main
這個示例將查詢結果寫入名為"log.txt"的日志文件中。你可以根據需要修改代碼以滿足你的日志記錄需求。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。