# cpp-dse-driver-examples **Repository Path**: mirrors_datastax/cpp-dse-driver-examples ## Basic Information - **Project Name**: cpp-dse-driver-examples - **Description**: Examples for using the DataStax C/C++ Enterprise Driver - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-08 - **Last Updated**: 2025-12-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # C/C++ DataStax Enterprise Driver Examples Examples for using the C/C++ DataStax Enterprise driver. The [`dse`](dse/examples) directory contains examples for DataStax Enterprise specific functionality and the [`core`](core/examples) includes examples for general functionality. ## Documentation Driver documentation can be found on our [documentation site]. ## To build: ``` mkdir build cd build cmake .. make ``` The following environment/cmake variables may need to be set to the install location of your dependencies: * `LIBDSE_ROOT_DIR` * `LIBUV_ROOT_DIR` * `OPENSSL_ROOT_DIR` Dependencies may also be located in a `lib` directory at the project root to remove the need of specifying dependency root directories: * `lib/dse` - C/C++ DataStax Enterprise Driver * `lib/libuv` - Libuv * `lib/openssl` - OpenSSL ## Dependencies * [cmake] (>= 2.6.4) * C/C++ DataStax Enterprise Driver (it can be downloaded from our [downloads site]) * [libuv] (also required by the driver and can also be download from our [downloads site]) * [openssl] (also required by the driver and can also be download from our [downloads site] for Windows only) [documentation site]: https://docs.datastax.com/en/developer/cpp-driver-dse/latest [downloads site]: https://downloads.datastax.com/cpp-driver [libuv]: https://github.com/libuv/libuv [openssl]: https://github.com/openssl/openssl [cmake]: https://cmake.org