frnsc-sqlite 0.1.0

Sqlite implementation of SqlDb trait of ForensicRS
Documentation
  • Coverage
  • 42.86%
    3 out of 7 items documented0 out of 6 items with examples
  • Size
  • Source code size: 15.88 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 853.44 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 1m 41s Average build duration of successful builds.
  • all releases: 1m 41s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • ForensicRS/frnsc-sqlite
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • SecSamDev

Sqlite Database for ForensicRS

Sqlite implementation of SqlDb trait of ForensicRS

let mut fs = forensic_rs::core::fs::StdVirtualFS::new();
let file = fs.open(&temp_path).unwrap();
let w_conn = SqliteDB::virtual_file(file).unwrap();
let mut statement = w_conn.prepare("SELECT name, age FROM users;").unwrap();
test_database_content(statement.as_mut()).expect("Should not return error");