I am looking for an open-source database modeling tool, ideally to run under both CentOS and Windows. I have not used any such tool before so I would like to solicit suggestions.
Thank you.
On Sun, 16 Oct 2016 15:38:32 -0400 H wrote:
I am looking for an open-source database modeling tool, ideally to run under both CentOS and Windows. I have not used any such tool before so I would like to solicit suggestions.
I don't know what the difference is between database modelling and an actual database, but sqlite is available on just about every platform imaginable and works amazingly well. It comes with a command line to test and query databases as well as being a library that you can call from every language from C on up.
On 10/16/2016 1:48 PM, Frank Cox wrote:
I don't know what the difference is between database modelling and an actual database
they are completely different things. Modeling is a database design tool, typically letting you design your table relations via a GUI tool, generating an entity-relation-diagram (ERD). The Modeling tool would then create the actual SQL database in the database engine of your choice (PostgreSQL, MySQL, SQLlite, Oracle, etcetcetc).
On Sun, 16 Oct 2016 14:03:41 -0700 John R Pierce wrote:
Modeling is a database design tool, typically letting you design your table relations via a GUI tool,
Gosh, I never knew such things existed. I guess I've never done anything sufficiently complex that I would need a tool like that.
Cool! Today I have learned something. Thank you sir!