All Projects → ragnar-lodbrok → meow-sql

ragnar-lodbrok / meow-sql

Licence: GPL-2.0, Unknown licenses found Licenses found GPL-2.0 LICENSE Unknown license.txt
MeowSQL is an attempt to port HeidiSQL to C++/Qt (Linux/Windows)

Programming Languages

C++
36643 projects - #6 most used programming language
QMake
1090 projects
CMake
9771 projects
Yacc
648 projects
c
50402 projects - #5 most used programming language
Inno Setup
370 projects

Projects that are alternatives of or similar to meow-sql

Moonlight Qt
GameStream client for PCs (Windows, Mac, Linux, and Steam Link)
Stars: ✭ 2,796 (+819.74%)
Mutual labels:  linux-app
Awesome Linux Software
A list of awesome applications, software, tools and other materials for Linux distros.
Stars: ✭ 16,943 (+5473.36%)
Mutual labels:  linux-app
MaCoPiX
Mascot Constructive Pilot for X
Stars: ✭ 57 (-81.25%)
Mutual labels:  linux-app
Devops Patch
A Patch for Dev-Ops community https://t.me/devOpsPatch
Stars: ✭ 193 (-36.51%)
Mutual labels:  linux-app
Notion App
Notion.so desktop application for Linux
Stars: ✭ 232 (-23.68%)
Mutual labels:  linux-app
OLD-vital-development
No description or website provided.
Stars: ✭ 18 (-94.08%)
Mutual labels:  linux-app
Rustig
A tool to detect code paths leading to Rust's panic handler
Stars: ✭ 145 (-52.3%)
Mutual labels:  linux-app
supermemo-wine
Project to make SuperMemo for Windows editions runnable with Wine
Stars: ✭ 56 (-81.58%)
Mutual labels:  linux-app
Jumpfm
A file manager that lets you jump.
Stars: ✭ 252 (-17.11%)
Mutual labels:  linux-app
ets2-job-logger
ETS2 Job Logger
Stars: ✭ 15 (-95.07%)
Mutual labels:  linux-app
Dustracing2d
Dust Racing 2D is a traditional top-down car racing game including a level editor.
Stars: ✭ 199 (-34.54%)
Mutual labels:  linux-app
Simple Vpn
A simple VPN allowing mesh-like communication between nodes, over websockets
Stars: ✭ 201 (-33.88%)
Mutual labels:  linux-app
vnstat-client
GUI Client for vnStat Network Monitor for Linux or GNU/Linux
Stars: ✭ 122 (-59.87%)
Mutual labels:  linux-app
Instant Lyrics
Shows lyrics of the currently playing Spotify song, or any song, instantly.
Stars: ✭ 191 (-37.17%)
Mutual labels:  linux-app
KDynamic
An Alternative to MacOS Mojave Dynamic Theme and Wallpaper Changer
Stars: ✭ 48 (-84.21%)
Mutual labels:  linux-app
Zenmonitor
Zen monitor is monitoring software for AMD Zen-based CPUs.
Stars: ✭ 149 (-50.99%)
Mutual labels:  linux-app
GabTag
A gtk linux application to handle audio tags 🎵
Stars: ✭ 34 (-88.82%)
Mutual labels:  linux-app
PrimeXT
Modern SDK for Xash3D FWGS engine, uses PhysX for physics, has advanced OpenGL renderer with a lot of features. Crossplatform, supported Windows/Linux. Based on XashXT and Spirit Of Half-Life.
Stars: ✭ 65 (-78.62%)
Mutual labels:  linux-app
kForth-64
64-bit Forth System for x86_64-GNU/Linux
Stars: ✭ 15 (-95.07%)
Mutual labels:  linux-app
sage
💸 Download from your banks and credit cards straight to your computer
Stars: ✭ 51 (-83.22%)
Mutual labels:  linux-app

MeowSQL 🙀

MeowSQL is an attempt to port a very useful GUI database client HeidiSQL to C++/Qt (with aim to be run natively at least on Linux)

MeowSQL Gif

Download/Install

Download installer for Windows or AppImage(how to run) for Linux on releases page.

Features

The app is in development stage at the moment and was never carefully tested, though it can be run and do some work (warning: do not use in production!!!).

  1. Works on Windows and Linux, in theory can be compiled on any platform with Qt5 and mysql-client support
  2. At the moment supports MySQL and PostgreSQL (early stage).
  3. Sessions manager: managing multiple connections (warn: no password encryption!)
  4. Connection to multiple sessions (=servers) at once (with multiple databases).
  5. Tree of db objects like databases and tables/views/striggers/functions/procedures - (MySQL + Postgres).
  6. Table: view columns (editable), indexes (editable) and foreign keys (editable) - (MySQL only).
  7. Table: view data (basic edit) - (MySQL + Postgres).
  8. SQL: editor with simple syntax highlighting (no autocomplete).
  9. SQL: execute multiple statements at once and see results of SELECT statements
  10. Create and drop tables - (MySQL only)
  11. Making dumps - (MySQL only via mysqldump)
  12. Initial SQLite 3 support (read-only)

Contributing

MeowSQL is a port of HeidiSQL, so just clone the sources and start rewriting Delphi code to Qt/C++ :

  1. Pick up any issue or any feature from roadmap.
  2. Replace TODOs with working code 😸
  3. Test the app and report bugs
  4. Star the repo

Use/subbranch develop, not master branch.

How to build (for developers)

Note: both QMake and CMake are supported at the moment

Linux:

  1. You need gcc (or other compiler) with c++11 support
  2. Qt (tested with 5.6-5.15, apt-get install qt5-default) and QMake (Optionally: Qt Creator) or CMake
  3. Clone the repo
  4. libmysqlclient library, for deb-based distros: apt-get install libmysqlclient-dev
  5. (Optional) Debian: sudo apt-get install mysql-server
  6. (Optional) Install test db: https://dev.mysql.com/doc/sakila/en/
  7. PostgreSQL client library libpq, for deb-based apt-get install libpq-dev postgresql-server-dev-all
  8. As an option use Qt Creator - just open ./meow-sql.pro or ./CMakeLists.txt

Windows (Actual):

  1. Download and install Qt 5 (5.6-5.15) via online-installer https://www1.qt.io/download-open-source/#section-2

  2. You would need a cpp compiler of course, I've got MS Visual Studio 2017 (Community)

  3. You should have CMake (already shipped with VS)

  4. Install Conan from conan.io

  5. Clone the repo and install conan packages (use your compiler/arch/etc):

     $ mkdir conan && cd conan
     $ conan install .. --settings arch=x86 --settings arch_build=x86 --settings build_type=Release --build=missing
    
  6. Open ./CMakeLists.txt in VS or Qt Creator (QMake is not supported on Win!)

  7. After build run windeployqt (or copy all libs from installed app)

Windows (Obsolete):

  1. Download and install Qt via online-installer https://www1.qt.io/download-open-source/#section-2 Version that worked for me is Qt 5.6.2 win32-msvc2013
  2. You would need a cpp compiler of course, I've got MS Visual Studio 2013 (Community)
  3. You should have QMake (plus I used Qt Creator) or CMake
  4. I've downloaded MySQL Connector C 6.1 (C not C++), and seems put all necessary files into third_party/
  5. I've downloaded PostgreSQL's libpq, and seems put all necessary files into third_party/ (Note: seems CMAKE still looks into C:/Program Files, so try to download and install PG 10.7 32bits here https://www.enterprisedb.com/downloads/postgres-postgresql-downloads)
  6. As an option use Qt Creator - just open ./meow-sql.pro or ./CMakeLists.txt
  7. After build (only release worked for me), run windeployqt (or copy all libs from installed app)

Mac OS:

  1. Install XCode
  2. Download and install Qt via online-installer https://www1.qt.io/download-open-source/#section-2 Install Version 5.9.8
  3. You need to download MySQL Connector C and libpq. I recommend to use homebrew and simply use brew install mysql-connector-c libpq
  4. make sure header files are available in /usr/local/include. If you installed via homebrew just create symlink ln -s /usr/local/opt/mysql-connector-c/include /usr/local/include/mysql/mysql and ln -s /usr/local/opt/libpq/include /usr/local/include/postgresql
  5. open ./meoq-sql.pro in Qt Creator and build
  6. If you get errors about missing .dylib Files (e.g. libJPEG.dylib) make sure you uncheck "Add build library search path to DYLD_LIBRARY_PATH and DYLD_FRAMEWORK_PATH" in Project Settings in Qt Creator (see https://stackoverflow.com/questions/35509731/dyld-symbol-not-found-cg-jpeg-resync-to-restart)

License

This project is licensed under the GPL 2.0 License

Acknowledgments

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].