alexandreyc / adbc-rs

Rust implementation of Arrow Database Connectivity (ADBC)
Apache License 2.0
4 stars 0 forks source link

How to use this crate? #2

Closed holicc closed 4 months ago

holicc commented 4 months ago

I have no idea how to use this crate. Do you have any examples? Please.

holicc commented 4 months ago

How to get SQLite and PostgreSQL drivers libraries ?

alexandreyc commented 4 months ago
  1. You should first build the SQLite and PostgreSQL drivers from the official ADBC repository
  2. You can see an example of using the driver manager to load the SQLite driver in the driver_manager module documentation (cargo doc --open --all-features)

Please note that this implementation is being upstreamed in the official ABDC repository and so it will become obsolete very soon.

holicc commented 4 months ago
  1. You should first build the SQLite and PostgreSQL drivers from the official ADBC repository
  2. You can see an example of using the driver manager to load the SQLite driver in the driver_manager module documentation (cargo doc --open --all-features)

Please note that this implementation is being upstreamed in the official ABDC repository and so it will become obsolete very soon.

Do you mean follow this guide to build drivers?

alexandreyc commented 4 months ago

Yes!