I used MPS in the past in a small project (like a lab-project), so I have basic understandings of how to use MPS (though it was version 2.4 or something alike). Now I'm trying to introduce some utility software (ideally, plugin for IntelliJ) built on top of MPS functionality. As MPS is not that widely used, I'd like to consult with experienced people here.
What I want to do is to wrap some relational knowledge database access (SQL queries) into MPS-based plugin. I want to be able to start quickly and generate code to already existing jdbc-wrapping library, and in future I want to be able to switch to my implementation with added db-specific features. In the same time I want to preserve existing user models so that they could switch to a new language easily, and fall back if something is wrong with this new language. How this easy-switch feature could be achieved? My first idea was using abstract language without generators, and adding implementation language in mps-based module in Idea as a dependency (one or another), but I'm not sure if this is easily possible.