dbx/src-tauri/src
kingcanfish d1075c0042
fix: resolve PostgreSQL/MySQL/SQL Server NUMERIC/DECIMAL display issues
- Add rust_decimal feature to sqlx and tiberius for proper Decimal type handling
- Fix try_get_unchecked<String> causing NULL or garbled output for numeric types
- Add numeric_precision and numeric_scale to ColumnInfo for all database drivers
- Update frontend to display precision (e.g., numeric(20,6)) in column headers
- Fix typeColorClass to handle type names with precision suffix

Root cause: PostgreSQL binary protocol sends NUMERIC as PgNumeric binary format,
not UTF-8 text. try_get_unchecked<String> attempted to decode binary bytes as UTF-8,
causing decode failures (NULL) or garbage characters (乱码).
2026-05-02 10:14:01 +08:00
..
commands fix: resolve PostgreSQL/MySQL/SQL Server NUMERIC/DECIMAL display issues 2026-05-02 10:14:01 +08:00
db fix: resolve PostgreSQL/MySQL/SQL Server NUMERIC/DECIMAL display issues 2026-05-02 10:14:01 +08:00
models store connection secrets in system keyring 2026-05-02 03:37:52 +08:00
lib.rs feat: enhance AI functionality with conversation management and cancellation 2026-05-02 03:05:02 +08:00
main.rs feat: initial release 2026-04-29 18:09:23 +08:00