GitHub user ianmcook added a comment to the discussion: Discussion: ODBC adapter driver for ADBC
>How about CPP Yes, C++ works too. See https://arrow.apache.org/adbc/23/cpp/driver_example.html > If I code this in Rust, can I distribute this into cpp and java directly via > their driver-manager? Yes. You can compile the driver to a shared library (`.so` / `.dylib` / `.dll`) and load it with the ADBC driver manager for any language. > If you have any recommendation distributing this, it'd be really good. To distribute an ADBC driver privately for internal use, I recommend creating a package that includes the shared library and a [driver manifest](https://arrow.apache.org/adbc/current/format/driver_manifests.html#driver-manifests). To distribute a production-quality open source ADBC driver for public use, start a discussion at [github.com/adbc-drivers](https://github.com/adbc-drivers) and we can help you get the driver on the public driver registry so anyone can use [dbc](https://docs.columnar.tech/dbc/) to install it. GitHub link: https://github.com/apache/arrow-adbc/discussions/4205#discussioncomment-16545284 ---- This is an automatically sent email for [email protected]. To unsubscribe, please send an email to: [email protected]
