ormlite 0.23.3

An ORM for people who love SQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg(not(any(feature = "sqlite", feature = "mysql")))]
#[path = "./run.rs"]
mod run;

use run::*;

#[test]
fn test_postgres_complex() {
    set_path_and_run("tests/postgres/complex.rs");
}

// #[test]
// fn test_postgres_join() {
//     set_path_and_run("tests/postgres/join.rs");
// }