https://github.com/alexeysp11/sqlviewer
A multilingual C# application that provides a user-friendly interface for interacting with different RDBMS and performing various database operations.
https://github.com/alexeysp11/sqlviewer
csharp database-management sql wpf
Last synced: 3 months ago
JSON representation
A multilingual C# application that provides a user-friendly interface for interacting with different RDBMS and performing various database operations.
- Host: GitHub
- URL: https://github.com/alexeysp11/sqlviewer
- Owner: alexeysp11
- Created: 2021-08-01T09:26:39.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2026-01-08T16:10:44.000Z (3 months ago)
- Last Synced: 2026-01-08T22:19:30.386Z (3 months ago)
- Topics: csharp, database-management, sql, wpf
- Language: C#
- Homepage:
- Size: 10.7 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sqlviewer
[English](README.md) | [Русский](README.ru.md)
`sqlviewer` is a multilingual C# application that provides a user-friendly interface for interacting with different RDBMS and performing various database operations.
## Overall description
This project is a C# implementation of a GUI for retrieving and transfering data from the following RDBMS:
- **SQLite**,
- **PostgreSQL**,
- **MySQL**,
- **Oracle**.
It's available in 29 different languages, such as:
- English;
- German;
- Russian;
- Spanish;
- Portuguese;
- Italian;
- French;
- Ukranian;
- Dutch;
- Polish;
- Czech;
- Serbian;
- Croatian;
- Korean;
- Japanese, etc.
Using this app, you can do the following things:
- write and execute SQL queries:

- watch information about all tables inside your database (SQL definition, columns, foreign keys, triggers and all data inside a paticular table):

- transfer data from one database to another:

### Goal
The goal of the project is to create a C# GUI application for retrieving and transferring data from various RDBMS, including SQLite, PostgreSQL, MySQL, and Oracle.
The scope of the project includes implementing a GUI for executing SQL queries, viewing database information, and transferring data between different databases.
This project can be used by database administrators, developers, and anyone who needs to work with multiple RDBMS and perform data management tasks.
### Similar open-source projects
Similar open-source projects include [DBeaver](https://github.com/dbeaver/dbeaver) and [SQuirreL SQL](https://github.com/squirrel-sql-client), but there are also similar projects written in C# such as [SQL Server Management Studio (SSMS)](https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-ver15) and [LINQPad](http://linqpad.net/).
### Possible limitations
Possible limitations of this project could include compatibility issues with certain RDBMS, performance issues when dealing with large datasets, and potential security vulnerabilities when transferring data between databases.
## Getting started
### Prerequisites
- Windows OS;
- .NET Core 3.1;
- One of the following data sources to be able to perform some operations with data:
- **SQLite**,
- **PostgreSQL**,
- **MySQL**,
- **Oracle**.
### How to run
In order to run the application, you can use command line:
1. Go to the main folder of the repository:
```
cd C:\PathToRepo\sqlviewer
```
2. Execute `config.cmd` file to restore all the projects, and initialize databases and the project's file system:
```
config.cmd
```
3. Execute `run.cmd` file:
```
run.cmd
```
### How to use
[Click here](docs/HowToUse.md) to read guide on how to use the application.
## For developers
This application is written in C# with **WPF** using **MVVM** pattern.
### How to contribute
1. [Click here](https://docs.github.com/en/get-started/quickstart/contributing-to-projects) to read guide on how to contribute to GitHub projects (common for any GitHub project).
2. Read [to-do list](docs/TODO.md).
### Application structure
Class diagram is shown below:
