Disable Auto Completion of SQL in Java code

Answered

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)?

0
1 comment

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.

0

Please sign in to leave a comment.