This page attempts to identify the issues around quoting identifiers in NetBeans and the proposed solution to these issues
An identifier is the name of a SQL object -- a schema, table, column, view, index, constraint, stored procedure, etc.
For the purpose of this issue, identifiers in SQL can be separated into two distinct types:
With this in mind, the principles driving this bug fix will be as follows:
The general opinion from users and our own experience is that quoting is to be avoided and generally not needed. There are special cases when an identifier contains special characters such as spaces, international characters and other special characters, but that is the exception rather than the rule.
We will be adding a new choice to the Databases node's contextual menu (is that what you call it?)
Databases New Connection... Quote Identifiers [ ] --------------------- Enable Debug Disable Debug
The Quote Identifiers item will be a toggle check.
It would be nice to make it clear we are talking about referred identifiers in queries visible to the user, but I'm not sure how I could possibly express that in a menu choice. Ideas and thoughts most appreciated.