sabiql 1.11.0

A fast, driver-less TUI for browsing and editing PostgreSQL databases
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[derive(Debug, Clone, thiserror::Error)]
pub enum DbOperationError {
    #[error("Connection failed: {0}")]
    ConnectionFailed(String),
    #[error("Query failed: {0}")]
    QueryFailed(String),
    #[error("Invalid JSON: {0}")]
    InvalidJson(String),
    #[error("Command not found: {0}")]
    CommandNotFound(String),
    #[error("Operation timed out: {0}")]
    Timeout(String),
}