I'm developing a tool that will allow the user to create a table schema / data model, create the table in the selected DB (should be able to handle connections to MySQL, PostgreSQL, MS SQL, and possibly others like Oracle) and then populate the created table with random data conforming to the data model, and then provide the user with a text file of that data connection's info, like hostname/port/dbname (all of these would be static or hard coded in the configs) as well as the specific table created for the that user.I've looked at a variety of ORMs and it seems like many provide this kind of functionality but my use case is a little different than the normal tutorials/demos because the user will provide the data model ad hoc, then the table will be created with random data but not accessed with this specific tool.Does anyone have any suggestions on a node module/library that can provide this kind of functionality as simply as possible? Basically I want it to allow multiple DB connections in the same app, and allow easily programmatic creation/population of tables.Thanks!
Submitted January 05, 2017 at 04:12PM by masterurbiz
No comments:
Post a Comment