exarrow-rs 0.12.0

ADBC-compatible driver for Exasol with Arrow data format support
# exarrow-rs Examples

This directory contains examples demonstrating how to use the exarrow-rs ADBC driver.

## Prerequisites

Before running the examples, you need:

1. A running Exasol database instance
2. Connection credentials (default: sys/exasol)
3. Rust toolchain installed

## Running Examples

### Basic Usage

The `basic_usage.rs` example demonstrates direct usage of the exarrow-rs API:

```bash
cargo run --example basic_usage
```

This example shows:
- Creating an ADBC driver instance
- Opening a database connection
- Executing queries
- Transaction management
- Result processing with Arrow RecordBatches
- Proper connection cleanup

### Driver Manager Usage

The `driver_manager_usage.rs` example demonstrates loading the driver dynamically via the ADBC driver manager, which is how external applications (Python, R, etc.) would use the driver:

```bash
# First, build the FFI-enabled shared library
cargo build --release --features ffi

# Then run the example
cargo run --example driver_manager_usage
```

This example shows:
- Loading the driver from a shared library at runtime
- Using the standard ADBC driver manager interface
- Creating database and connection objects via ADBC
- Executing queries through ADBC Statement API
- Retrieving driver info and table types
- DDL/DML operations through the driver manager