feat(csharp): Implement remaining functions in 1.0 spec (#1773)

Implements the remaining functions in the 1.0 specification in the C
interop layer.

Closes #1221
5 files changed
tree: fcf15ea6f493636a93eb255745bad522d8a6b6a1
  1. .github/
  2. c/
  3. ci/
  4. csharp/
  5. dev/
  6. docs/
  7. glib/
  8. go/
  9. java/
  10. python/
  11. r/
  12. ruby/
  13. rust/
  14. .asf.yaml
  15. .clang-format
  16. .clang-tidy
  17. .cmake-format
  18. .env
  19. .flake8
  20. .gitattributes
  21. .gitignore
  22. .gitmodules
  23. .isort.cfg
  24. .pre-commit-config.yaml
  25. adbc.h
  26. CHANGELOG.md
  27. CONTRIBUTING.md
  28. docker-compose.yml
  29. license.tpl
  30. LICENSE.txt
  31. NOTICE.txt
  32. pyrightconfig.json
  33. README.md
README.md

ADBC: Arrow Database Connectivity

License

ADBC is an API standard (version 1.0.0) for database access libraries (“drivers”) in C, Go, and Java that uses Arrow for result sets and query parameters. Instead of writing code to convert to and from Arrow data for each individual database, applications can build against the ADBC APIs, and link against drivers that implement the standard. Additionally, a JDBC/ODBC-style driver manager is provided. This also implements the ADBC APIs, but dynamically loads drivers and dispatches calls to them.

Like JDBC/ODBC, the goal is to provide a generic API for multiple databases. ADBC, however, is focused on bulk columnar data retrieval and ingestion through an Arrow-based API rather than attempting to replace JDBC/ODBC in all use cases. Hence, ADBC is complementary to those existing standards.

Like Arrow Flight SQL, ADBC is an Arrow-based way to work with databases. However, Flight SQL is a protocol defining a wire format and network transport as opposed to an API specification. Flight SQL requires a database to specifically implement support for it, while ADBC is a client API specification for wrapping existing database protocols which could be Arrow-native or not. Together, ADBC and Flight SQL offer a fully Arrow-native solution for clients and database vendors.

For more about ADBC, see the introductory blog post.

Status

ADBC versions the API standard and the implementing libraries separately.

The API standard (version 1.0.0) is considered stable, but enhancements may be made.

Libraries are under development. For more details, see the documentation, or read the changelog.

Installation

Please see the documentation.

Documentation

The core API definitions can be read in adbc.h. User documentation can be found at https://arrow.apache.org/adbc

Development and Contributing

For detailed instructions on how to build the various ADBC libraries, see CONTRIBUTING.md.