1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
|
# 
> Friendly SQL Client
[](https://github.com/Alecaddd/sequeler/action)
[](https://hosted.weblate.org/engage/sequeler/?utm_source=widget)
Sequeler is a native Linux SQL client built in Vala and Gtk. It allows you to connect to your local and remote databases, write SQL in a handy text editor with language recognition, and visualize SELECT results in a Gtk.Grid Widget.

## Supported Databases
- PostgreSQL
- MariaDB/MySQL
- SQLite
## Get it from the elementary OS AppCenter!
Sequeler, is primarily available from the AppCenter of elementary OS. Download it from there!
[](https://appcenter.elementary.io/com.github.alecaddd.sequeler)
## Get it from Flathub!
You can get Sequeler form Flathub no matter what distribution you're using. Download it or follow the instructions to install it from here!
<a href="https://flathub.org/apps/details/com.github.alecaddd.sequeler" target="_blank"><img src="https://flathub.org/assets/badges/flathub-badge-i-en.svg" width="160px" alt="Get it from Flathub!"></a>
## Support the Project
If you like Sequeler and you want to support its development, consider donating via [PayPal](https://www.paypal.me/alecaddd) or pledge on [Patreon](https://www.patreon.com/alecaddd).
<a href="https://www.patreon.com/alecaddd" target="_blank"><img src="https://c5.patreon.com/external/logo/become_a_patron_button.png" width="170px" alt="Become a Patron"></a> <a href="https://www.paypal.me/alecaddd" target="_blank"><img src="https://www.paypalobjects.com/webstatic/mktg/Logo/pp-logo-200px.png" width="150px" alt="Donate on PayPal"></a>
## Install it from source
You can install Sequeler by compiling from source, here's the list of dependencies required:
- `gtk+-3.0>=3.22.29`
- `granite>=5.2`
- `glib-2.0`
- `gee-0.8`
- `gobject-2.0`
- `libxml-2.0`
- `libgda-5.0`
- `gtksourceview-3.0`
- `libsecret-1`
- `libssh2`
- `meson`
## Building
```
meson build --prefix=/usr
sudo ninja -C build install
```
## Building development version
The development version allows you to keep the stable version perfectly working while hacking on Sequeler.
```
meson build --prefix=/usr -Dprofile=development
sudo ninja -C build install
```
You can run the application from terminal using
```
com.github.alecaddd.sequelerDevel
```
### Help with the translation
[](https://hosted.weblate.org/engage/sequeler/?utm_source=widget)
### Contributors
- Alberto Fanjul - [Github](https://github.com/albfan)
- Bilal Elmoussaoui - [Github](https://github.com/bilelmoussaoui) - [Paypal](https://www.paypal.me/BilalELMoussaoui)
|