This crate contains the database related file formats of the assembly library.
This crate comes with a selection of example tools that can be installed using:
shell
$ cargo install assembly-data --examples
Show all columns and their types for some table:
shell
$ cargo run --example fdb-columns <file> <table>
Read an FDB file an create another one with the same content:
shell
$ cargo run --example fdb-copy <src> <dest>
Show all rows for a single key in a table:
shell
$ cargo run --example fdb-index <file> <table> <key>
Print statistics on an FDB file:
shell
$ cargo run --example fdb-stat <file>
Show all tables in an FDB file
shell
$ cargo run --example fdb-tables <file>
Print the names of all tables and their columns
shell
$ cargo run --example fdb-tree <file>