Crates.io | finql-sqlite |
lib.rs | finql-sqlite |
version | 0.3.0 |
source | src |
created_at | 2021-02-01 21:50:55.575849 |
updated_at | 2021-07-06 13:49:39.154889 |
description | Internal crate used by finql implementing the sqlite adaptor |
homepage | |
repository | https://github.com/xemwebe/finql |
max_upload_size | |
id | 349416 |
size | 100,606 |
finql-sqlite is an implementation of the finql-data data handler trait used by the finql crate. It is only useful in connection with finql.
The implementation is based on sqlx, which uses macros to enable query checking at compile time. In order to achieve this, a valid database must be specified, otherwise the build will fail.
Therefore, pleas follow the following steps to build the library:
Cargo.toml
fileexport DATABASE_URL=sqlite:data/test.db
cargo build