//! SQL validation, identifier, and connection utilities.
//!
//! Provides [`identifier`] helpers for quoting and validating SQL
//! identifiers, [`validation`] for read-only query enforcement,
//! [`timeout`] for query-level timeout wrapping, and the
//! [`connection`] trait shared by every backend.
pub use Connection;