docs/content/stable/develop/tutorials/build-apps/cpp/cloud-ysql-cpp.md
The following tutorial shows a small C++ application that connects to a YugabyteDB cluster using the libpqxx driver and performs basic SQL operations. Use the application as a template to get started with YugabyteDB Aeon in C++.
brew install libpq. You can download the PostgreSQL binaries and source from PostgreSQL Downloads.brew install libpqxx. To build the driver yourself, refer to Building libpqxx.Clone the sample application to your computer:
git clone https://github.com/YugabyteDB-Samples/yugabyte-simple-cpp-app.git && cd yugabyte-simple-cpp-app
If your cluster is running on YugabyteDB Aeon, you need to modify the connection parameters so that the application can establish a connection to the YugabyteDB cluster. (You can skip this step if your cluster is running locally and listening on 127.0.0.1:5433.)
To do this:
Open the sample-app.cpp file.
Set the following configuration-related constants:
yugabyte).yugabyte and yugabyte). For YugabyteDB Aeon, use the credentials in the credentials file you downloaded.verify-full.Save the file.
Build the application with gcc or clang.
g++ -std=c++17 sample-app.cpp -o sample-app -lpqxx -lpq \
-I<path-to-libpq>/libpq/include -I<path-to-libpqxx>/libpqxx/include \
-L<path-to-libpq>/libpq/lib -L<path-to-libpqxx>/libpqxx/lib
Replace <path-to-libpq> with the path to the libpq installation, and <path-to-libpqxx> with the path to the libpqxx installation; for example, /usr/local/opt.
Start the application.
$ ./sample-app
You should see output similar to the following:
>>>> Successfully connected to YugabyteDB!
>>>> Successfully created table DemoAccount.
>>>> Selecting accounts:
name = Jessica, age = 28, country = USA, balance = 10000
name = John, age = 28, country = Canada, balance = 9000
>>>> Transferred 800 between accounts.
>>>> Selecting accounts:
name = Jessica, age = 28, country = USA, balance = 9200
name = John, age = 28, country = Canada, balance = 9800
You have successfully executed a basic C++ application that works with YugabyteDB Aeon.
Open the sample-app.cpp file in the yugabyte-simple-cpp-app folder to review the methods.
The connect method establishes a connection with your cluster via the libpqxx driver.
std::string url = "host=" + HOST + " port=" + PORT + " dbname=" + DB_NAME +
" user=" + USER + " password=" + PASSWORD;
if (SSL_MODE != "") {
url += " sslmode=" + SSL_MODE;
if (SSL_ROOT_CERT != "") {
url += " sslrootcert=" + SSL_ROOT_CERT;
}
}
std::cout << ">>>> Connecting to YugabyteDB!" << std::endl;
pqxx::connection *conn = new pqxx::connection(url);
std::cout << ">>>> Successfully connected to YugabyteDB!" << std::endl;
The createDatabase method uses PostgreSQL-compliant DDL commands to create a sample database.
pqxx::work txn(*conn);
txn.exec("DROP TABLE IF EXISTS DemoAccount");
txn.exec("CREATE TABLE DemoAccount ( \
id int PRIMARY KEY, \
name varchar, \
age int, \
country varchar, \
balance int)");
txn.exec("INSERT INTO DemoAccount VALUES \
(1, 'Jessica', 28, 'USA', 10000), \
(2, 'John', 28, 'Canada', 9000)");
txn.commit();
The selectAccounts method queries your distributed data using the SQL SELECT statement.
res = txn.exec("SELECT name, age, country, balance FROM DemoAccount");
for (auto row: res) {
std::cout
<< "name=" << row["name"].c_str() << ", "
<< "age=" << row["age"].as<int>() << ", "
<< "country=" << row["country"].c_str() << ", "
<< "balance=" << row["balance"].as<int>() << std::endl;
}
The transferMoneyBetweenAccounts method updates your data consistently with distributed transactions.
try {
pqxx::work txn(*conn);
txn.exec("UPDATE DemoAccount SET balance = balance -" + std::to_string(amount)
+ " WHERE name = \'Jessica\'");
txn.exec("UPDATE DemoAccount SET balance = balance +" + std::to_string(amount)
+ " WHERE name = \'John\'");
txn.commit();
std::cout << ">>>> Transferred " << amount << " between accounts." << std::endl;
} catch (pqxx::sql_error const &e) {
if (e.sqlstate().compare("40001") == 0) {
std::cerr << "The operation is aborted due to a concurrent transaction that is modifying the same set of rows."
<< "Consider adding retry logic for production-grade applications." << std::endl;
}
throw e;
}