Skip to main content

Crate dactyl_db

Crate dactyl_db 

Source
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.
DatastoreRoute
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§

Datastore
A supported application datastore.
Parameter
A unified database parameter value.

Functions§

executeDeprecated
queryDeprecated
read
write

Type Aliases§

Driver
Alias that makes the application-driver role explicit.