shellql 0.1.7-beta

A Vim- and tmux-inspired terminal database manager for developers
Documentation
1
2
3
4
5
6
7
8
9
10
pub mod crud;
pub mod read;
pub mod schema;

pub use crud::{delete_rows, insert_row, update_cell};
pub use read::{
    count_rows, count_rows_filtered, execute_query, filter_rows, query_rows, table_rows,
};
pub use schema::ColumnInfo;
pub use schema::{list_tables, table_schema};