Module exports

Module exports 

Source
Expand description

Database-specific type exports.

This module contains all the conditional feature exports for different database backends, keeping them organized in one place.

Re-exports§

pub use crate::postgres::Params as PostgresParams;
pub use crate::postgres::build_result_set as postgres_build_result_set;

Structs§

SqliteParamsExecute
Wrapper for SQLite parameters for execution.
SqliteParamsQuery
Wrapper for SQLite parameters for queries.

Functions§

sqlite_build_result_set
Build a result set from a SQLite query Only SELECT queries return rows affected. If a DML is sent, it does run it. If there’s more than one query in the statement, idk which statement will be run.