feat: add support for Microsoft SQL Server (MSSQL) in backup and restore functionality #53
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.
#41 This pull request adds comprehensive support for Microsoft SQL Server (MSSQL) throughout the application, including backup and restore functionality, connection management, Docker packaging, and documentation. The changes span backend logic, frontend UI, and user documentation to ensure MSSQL is a first-class supported database alongside PostgreSQL, MySQL, MongoDB, and Redis.
Backend: MSSQL Support in Backup, Restore, and Connection Management
sqlcmdand appropriate T-SQL scripts inbackup_cmd.goandbackup_restore.go, including error validation for restores. [1] [2] [3] [4] [5] [6] [7] [8]connection_config.gousing thego-mssqldbdriver, supporting both direct and SSH-tunneled connections. [1] [2] [3] [4]Frontend: UI and TypeScript Enhancements
DatabaseTypeTypeScript type and labels to include MSSQL.Docker and Packaging
Dockerfileto install MSSQL tools (freetds,msodbcsql18,mssql-tools18) for full MSSQL backup/restore support.Documentation Updates
These changes collectively ensure that users can connect to, back up, and restore MSSQL databases as easily as other supported databases, with clear guidance and tooling in both the UI and backend.