openehr-sqlite 0.6.0

openEHR persistence for SQLite: schema dialect and a complete embedded store
Documentation
1
2
3
4
5
6
7
8
9
//! Prints the DDL this dialect emits, so a reader can see it without
//! reading the generator.

fn main() {
    print!(
        "{}",
        openehr_store::ddl_script(&openehr_sqlite::SqliteDialect)
    );
}