BigQuery Support¶
Language: Go Status: Experimental
Language: C# Status: Beta
There are two official BigQuery drivers in development:
C# (Beta): Available as a NuGet package
Go (Experimental): Available on conda-forge (adbc-driver-bigquery, libadbc-driver-bigquery), PyPI, and R-multiverse
C# BigQuery Driver¶
Installation¶
Install Apache.Arrow.Adbc.Drivers.BigQuery from NuGet:
dotnet package add Apache.Arrow.Adbc.Drivers.BigQuery
Install the C/C++ driver, then use the Go driver manager. Requires CGO.
go get github.com/apache/arrow-adbc/go/adbc/drivermgr
Additionally, the driver may be used from C/C++, C#, GLib, Go, R, Ruby, and Rust via the driver manager.
More Information¶
For more information about this driver, please see the README.
Go BigQuery Driver¶
Installation¶
Install libadbc-driver-bigquery from conda-forge:
mamba install libadbc-driver-bigquery
Install the C/C++ driver, then use the Go driver manager. Requires CGO.
go get github.com/apache/arrow-adbc/go/adbc/drivermgr
Install adbc-driver-bigquery from conda-forge:
mamba install adbc-driver-bigquery
Install adbc-driver-bigquery from PyPI:
pip install adbc-driver-bigquery
Install adbcbigquery from R-multiverse:
install.packages("adbcbigquery", repos = "https://community.r-multiverse.org")
Additionally, the driver may be used from C/C++, C#, GLib, Go, R, Ruby, and Rust via the driver manager.
More Information¶
For more information about this driver, please see the README and this tracking issue.