Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Snowflake driver for Arrow Database Connectivity (ADBC)
A Snowflake ADBC driver, based on the ADBC Snowflake Go driver.
Example
use ;
use ;
use ;
#
Crate features
Linking Go driver
This crate is a wrapper around the Go driver.
There are different methods to load the Go driver:
bundled (default)
Builds the driver from source and links it statically. This requires a Go compiler to be available at build time. This is the default behavior.
linked
Link the driver at build time. This requires the driver library to be available
both at build- and runtime. Set ADBC_SNOWFLAKE_GO_LIB_DIR during the build to
add search paths for the linker.
Runtime only
It's also possible to build this crate without the driver and only link at
runtime. This requires disabling the bundled and linked features. Linking
at runtime is also available when the other features are enabled.
Configuration
The crate provides builders that can be initialized from environment variables.
env (default)
Adds from_env methods to initialize builders from environment variables.
dotenv: env (default)
Loads environment variables from .env files in from_env methods.