dbx/src-tauri
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
..
capabilities feat: add tauri-plugin-shell and update permissions for shell access 2026-04-29 22:25:28 +08:00
icons feat: initial release 2026-04-29 18:09:23 +08:00
src fix: resolve PostgreSQL/MySQL/SQL Server NUMERIC/DECIMAL display issues 2026-05-02 10:14:01 +08:00
.gitignore feat: initial release 2026-04-29 18:09:23 +08:00
Cargo.lock fix: resolve PostgreSQL/MySQL/SQL Server NUMERIC/DECIMAL display issues 2026-05-02 10:14:01 +08:00
Cargo.toml fix: resolve PostgreSQL/MySQL/SQL Server NUMERIC/DECIMAL display issues 2026-05-02 10:14:01 +08:00
build.rs feat: initial release 2026-04-29 18:09:23 +08:00
tauri.conf.json chore: bump version to 0.3.4 2026-05-01 23:12:01 +08:00