//! Thin-mode SODA (Simple Oracle Document Access).
//!
//! **Experimental surpass feature.** python-oracledb's thin mode has no SODA
//! (it is documented as thick-only). This module implements SODA entirely over
//! the thin TTC wire protocol by generating the SQL and `DBMS_SODA` PL/SQL that
//! the thick OCI client would otherwise generate internally, running it through
//! the existing [`crate::Connection`] execute/fetch surface and the OSON/JSON
//! codecs in `oracledb-protocol`.
//!
//! Scope is the "viable subset": collection lifecycle (create/open/list/drop/
//! truncate), document insert (one/many, with and without returned metadata),
//! find by key(s) / by QBE filter, count, getOne/getDocuments/getCursor,
//! remove, replaceOne, and JSON-search index create/drop. See `docs/SODA.md`
//! for the honest list of supported operations vs. python-oracledb thick and
//! the documented gaps.
pub
pub use SodaCollection;
pub use SodaCursor;
pub use SodaDatabase;
pub use SodaDocument;
pub use ;
pub use ;
pub use ;