Expand description
Dactyl — the application-layer read/write driver for SQLite and Neon.
Dactyl owns only backend selection, parameter binding, and response normalization. It forwards raw application SQL to the selected database; schema administration, migrations, transactions, analytics, retries, and business intelligence stay outside this crate.
Re-exports§
pub use crate::error::AdapterErrorKind;pub use crate::error::DactylError;
Modules§
- error
- Errors returned by the Dactyl driver.
Structs§
- Connection
- A route-scoped application driver. Backend handles remain private.
- Datastore
Route - The route needed to send an application read or write.
- Row
- One result row. Carries the column names plus the per-cell JSON values.
- Rows
- A collection of result rows.
Enums§
Functions§
Type Aliases§
- Driver
- Alias that makes the application-driver role explicit.