How to create EER model from a sqlite db
Asked Answered
C

1

12

i'm using sqlitejdbc libraries to create a db using java. Now i need to generate eer model from existing sqlite db stored in a file. In past i used MySqlWorkbench to generate eer from a mysql db, but i don't know how to do that on sqlite db.. can someone help me? thanks!!

Courage answered 10/6, 2012 at 22:41 Comment(0)
A
13
  1. Open SQLite file using SQLite Database Browser
  2. Export to SQL
  3. Import (using plugin) into Workbench

Details:

If you have the sqlite file available, open it using the free SQLite Database Browser. This gives you a few ways in which to inspect the database:

  • view table structure
  • view table content
  • issue queries against content
  • and more...

Beyond this, you can opt for the SQL file export. Go to "File > Export > Database to SQL file" option inside the SQLite Database Browser.

Once you create the SQL output file, use the SQLite export plugin for MySQL Workbench - especially if you're already familiar with MySQL's Workbench tool.

Amyamyas answered 21/6, 2012 at 21:45 Comment(2)
I feel so dumb not being able to find this solution by myself... It's very smart, simple and very efficient. Thanks a lotBartolemo
Wish SQLite database browser had an ER visualizer itself.Akimbo

© 2022 - 2024 — McMap. All rights reserved.