Skip to content

datastax/cpp-dse-driver-examples

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

C/C++ DataStax Enterprise Driver Examples

Examples for using the C/C++ DataStax Enterprise driver. The dse directory contains examples for DataStax Enterprise specific functionality and the core 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