This directory contains small examples showing how to use the Cloud Spanner C++ client library in your own project. These instructions assumne that you have some experience as a C++ developer and that you have a working C++ toolchain (compiler, linker, etc.) installed on your platform.
-
Install Bazel using the instructions from the
bazel.buildwebsite. -
Compile this example using Bazel:
cd $HOME/google-cloud-cpp-spanner/quickstart bazel build ...
-
Run the example, change the place holder to appropriate values:
bazel run :quickstart -- [GCP PROJECT] [CLOUD SPANNER INSTANCE] [CLOUD SPANNER DATABASE]
If you are using Windows or macOS there are additional instructions at the end of this document.
-
Install CMake. The package managers for most Linux distributions include a package for CMake. Likewise, you can install CMake on Windows using a package manager such as chocolatey, and on macOS using homebrew. You can also obtain the software directly from the [cmake.org][https://cmake.org/download/].
-
Install the dependencies with your favorite tools. As an example, if you use vcpkg:
cd $HOME/vcpkg ./vcpkg install google-cloud-cpp-spanner
-
Configure CMake, if necessary, configure the directory where you installed the dependencies:
cd $HOME/gooogle-cloud-cpp-spanner/quickstart cmake -H. -B.build -DCMAKE_TOOLCHAIN_FILE=$HOME/vcpkg/scripts/buildsystems/vcpkg.cmake cmake --build .build
-
Run the example, change the place holder to appropriate values:
.build/quickstart [GCP PROJECT] [CLOUD SPANNER INSTANCE] [CLOUD SPANNER DATABASE]
If you are using Windows or macOS there are additional instructions at the end of this document.
gRPC requires an environment variable to configure the trust store for SSL certificates, you can download and configure this using:
curl -Lo roots.pem https://raw.githubusercontent.com/grpc/grpc/master/etc/roots.pem
export GRPC_DEFAULT_SSL_ROOTS_FILE_PATH="$PWD/roots.pem"To workaround a bug in Bazel, gRPC requires this flag on macOS builds, you can add the option
manually or include it in your .bazelrc file:
bazel build --copt=-DGRPC_BAZEL_BUILD ...gRPC requires an environment variable to configure the trust store for SSL certificates, you can download and configure this using:
@powershell -NoProfile -ExecutionPolicy unrestricted -Command ^
(new-object System.Net.WebClient).Downloadfile( ^
'https://raw.githubusercontent.com/grpc/grpc/master/etc/roots.pem', ^
'roots.pem')
set GRPC_DEFAULT_SSL_ROOTS_FILE_PATH=%cd%\roots.pem