Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQLite database scheme as Entity Relationship Model [closed]

Is there a tool to display the database scheme for SQLite 3 database like with MySQL Workbench and Reverse Engineering? I mean a graphical representation like Database scheme

like image 748
testing Avatar asked Feb 23 '12 10:02

testing


People also ask

Does SQLite support schema?

Always NULL. SQLite doesn't support schemas. The path to the database file specified in the connection string.

What is database schema in SQLite?

Every SQLite database contains a single "schema table" that stores the schema for that database. The schema for a database is a description of all of the other tables, indexes, triggers, and views that are contained within the database.

When can you get an SQLite schema error?

16) When can you get an SQLITE_SCHEMA error? The SQLITE_SCHEMA error is returned when a prepared SQL statement is not valid and cannot be executed. Such type occurs only when using the sqlite3 prepare() and sqlite3 step() interfaces to run SQL.

How do I view SQLite schema?

If you are running the sqlite3 command-line access program you can type ". tables" to get a list of all tables. Or you can type ". schema" to see the complete database schema including all tables and indices.


1 Answers

Try DbVisualizer, it works for any database and I particularly like the way it arranges large diagrams. Check the Personal evaluation license.

like image 62
Óscar López Avatar answered Sep 19 '22 18:09

Óscar López