synle / sqlui-native

SQLUI Native (sqluinative) is a simple UI client for most SQL Engines written in Electron. It is compatible with Windows, Mac, Ubuntu / Debian and Redhat. It supports most dialects of RMBDs like MySQL, Microsoft SQL Server, Postgres, SQLite and has limited supports for Cassandra, MongoDB, Redis, CockroachDB, Azure CosmosDB and Azure Storage Tab
https://synle.github.io/sqlui-native/
MIT License
59 stars 8 forks source link

Starter Code Snippet Generator #572

Open synle opened 2 years ago

synle commented 2 years ago

Will allow users to generate starter code.

To be supported Language

To be supported Database Engine

Screenshots

image

image

synle commented 2 years ago

To support MSSQL and Python and SQLAlchemy

# pip install pymssql
engine = create_engine('mssql+pymssql://sa:password123!@localhost:1433/music_store?charset=utf8', echo = True)
synle commented 2 years ago

To support python and mysql

pip install pymysql
engine = create_engine("mysql+pymysql://user:pass@some_mariadb/dbname?charset=utf8mb4")