//! `std.sql` thin adapter.
//!
//! Bridge implementation moved to the `mlua-batteries` crate
//! (`mlua_batteries::sql`). This module only resolves the host's
//! environment-driven SQL configuration into a
//! [`mlua_batteries::sql::SqlConfig`] before delegating to
//! [`mlua_batteries::sql::register_with`], then layers the agent-block
//! Lua tool helpers (`sql_tools.lua`) on top.
//!
//! See `bridge/config.rs` for the ENV → config mapping.
use Arc;
use *;
use SqlConfig;
use crateHostContext;