Skip to content

ForensicRS/frnsc-sqlite

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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");

About

Sqlite implementation of SqlDb trait of ForensicRS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages