On the first place, I apologize if the title is confusing because I did not know how to name it other way.
Basically, what I need is a tool which could help me complete SQL code when I pass it as a parameter (string parameter). For example
db.execSQL("DROP TABLE IF EXISTS"+TABLE_NAME); //intellisense does not work here
In case of long SQL commands passed as a parameter, it’s very time consuming to watch not to make mistakes in SQL code (which I do after hours of coding).
Any good tool to help me?
The language is Java and the IDE is IntelliJ IDEA, but I am open to any external light-weight tool.
IDEA already supports it, make sure data source is configured and language injection is enabled:
