toolu-orm-query 0.2.0

Type-safe query builders for toolu-orm
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Database-backed fetch methods for [`super::SelectBuilder`].
//!
//! Driver-specific `SelectBuilder` methods: `fetch_all`, `fetch_one`, `fetch_optional`,
//! `count`, `exists`.

mod shared;

#[cfg(all(feature = "libsql", not(feature = "rusqlite"), not(feature = "postgres")))]
mod fetch_libsql;

#[cfg(all(feature = "rusqlite", not(feature = "libsql"), not(feature = "postgres")))]
mod fetch_rusqlite;

#[cfg(all(feature = "postgres", not(feature = "libsql"), not(feature = "rusqlite")))]
mod fetch_postgres;