Disable Auto Completion of SQL in Java code
已回答
Is there a way to turn off auto-completion for SQL Strings in Java code? If not, is there a way for the suggestions to not be auto-selected, so that pressing ENTER will default to starting a new line rather than insert the auto-completion suggestion (which is always awful and out of context)?
请先登录再写评论。
What SQL dialect do you use?
To turn off completion and highlighting you can by canceling the injecting the SQL language from the string literal.
If you have data source in project, it actually could help to specify the SQL dialect specific to the database type you are working with and configure SQL Resolution Scopes.