easy-sql 0.101.1

Macro-first SQL toolkit with compile-time checked queries, optional migrations on top of sqlx.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Tests used to stabilise code that is or will be generated by procedural macros.
mod insert;
mod output;
mod query;
mod query_lazy;
mod table;
mod update;

use super::*;

/// Represents a connection that will be never created
/// TODO will be changed conditionally when the `watcher` feature will be added
#[allow(dead_code)]
type NeverConnection = crate::Connection<TestDriver>;