I have a large project I am looking to convert from Oracle Apex.
There are thousands of control tables that need basic CRUD screens.
Is there some way to invoke Studio services from the command line?
Clicking away, table by table is error prone and tedious, but I could write a command line generator in python in less than an hour.
1 Like
Unfortunately, there is no command line interface to Studio. Some Studio tasks like project build, app server start, etc. are done by invoking Gradle tasks (i.e. can be done from the command line too), but scaffolding is done by Studio itself. However, your task may be not so hard because:
-
Data model generator (reverse engineering) can automatically create standard CRUD screens
-
You can use Entity Inspector and do not create screens for simple entities at all.