Home > front end >  Database graphic display using Django or Sqlite
Database graphic display using Django or Sqlite

Time:07-26

Is there any software or package that can help me get a graphical representation of my database. I want something that can take as input my Django models or my sqlite database and provide me with a graphical representation of tables and relationships.

CodePudding user response:

if you are using sqlite you can view database with https://sqlitebrowser.org/dl/

PostgreSQL: https://www.pgadmin.org/download/

mysql: https://dev.mysql.com/downloads/workbench/

CodePudding user response:

You could use DBeaver which is a free SQL Client that supports a wide range of SQL databases.

DBeaver has an option to generate ER diagrams. (See: https://dbeaver.com/docs/wiki/ER-Diagrams/)

  • Related