Unable to See Main Datasource plugin options

Hi
After Converting yml properties to VM Args i am not able to see all options of main Datasource

main:
datasource:
url: ${MAIN_DATASOURCE_URL:jdbc:hsqldb:file:.jmix/hsqldb/taup}
username: ${MAIN_DATASOURCE_USERNAME:sa}

If i have my yml properties like this. then. seeing main datasource without Recreate and Update like

Bu t If i have
main:
datasource:
url: jdbc:hsqldb:file:.jmix/hsqldb/taup
username: sa
After this everything is working fine
With VM options its not working Properly

Screenshot 2023-02-15 at 4.25.22 PM

Hi

Thanks for your feedback.
Jmix Studio doesn’t support providing datasource properties as a VM args. Only environment variables supported for the moment.
Also please note that due some Studio implementation specific you need to keep database prefix specified in properties file to be able to use this connection in Studio.
E.g. for YAML properties:

main:
  datasource:
    url: jdbc:postgresql://${DB_HOST:localhost}:${DB_PORT:5432}/${POSTGRES_DB:demo}
    username: root
    password: root