feat(desktop): implement MySQL and SQLite UI parity (#325) - #330
Merged
Conversation
- Add explicit transaction controls (Begin, Commit, Rollback) to MysqlSqlWorkspace - Add procedure/function listing and MysqlRoutineView DDL inspector via SHOW CREATE PROCEDURE/FUNCTION - Add SqliteOverviewTab with database size, page statistics, journal mode, version, and table listing - Add DDL inspector button and dialog to SqliteTableView
9 tasks
ZhuchkaTriplesix
added a commit
that referenced
this pull request
Jul 27, 2026
feat(desktop): implement MySQL and SQLite UI parity (#325)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Описание изменений
В рамках реализации Единого UI-стандарта для драйверов и расширений (Universal UI Standard) проведен комплекс работ по выравниванию функционала и интерфейсов встроенных драйверов MySQL и SQLite до паритета с эталонным PostgreSQL:
1. MySQL (
lib/features/mysql)MysqlSqlWorkspace): Добавлены явные кнопки Begin, Commit и Rollback, отправляющие командыSTART TRANSACTION;,COMMIT;иROLLBACK;в активное подключение. Это обеспечивает безопасный и предсказуемый контроль транзакций в интерфейсе наряду с Autocommit.MysqlRoutineView):MysqlConnectionреализованы методыlistProceduresиlistFunctions(извлечение списка изinformation_schema.ROUTINES).connections_panel_mysql.dart) добавлены узлы и папки для Procedures и Functions.MysqlRoutineView, отображающий DDL код процедуры или функции на основеSHOW CREATE PROCEDURE / FUNCTION.2. SQLite (
lib/features/sqlite)SqliteOverviewTabвSqliteWorkspaceHome):sqlite_version()), статистика страниц (page_count/page_size), режим журнала (journal_mode/ WAL) и полный перечень таблиц в базе данных.SqliteTableView):sqlite_master.Проверка работоспособности
flutter test).Closes #325