Updated: October 28, 2024 |
Connecting to a database requires that you know its name so you can specify the correct device name when connecting through the QDB client library. When you call the connect function, the library returns a handle that you can subsequently use for accessing the database:
qdb_hdl_t *dbhandle; // The QDB database handle dbhandle = qdb_connect("/dev/qdb/customerdb", 0); if (dbhandle == NULL) { fprintf(stderr, "Connect failed: %s\n", strerror(errno)); }