org.netbeans.api.db.sql.support
Class SQLIdentifiers
java.lang.Object
org.netbeans.api.db.sql.support.SQLIdentifiers
public final class SQLIdentifiers
- extends Object
This class provides utility methods for working with SQL identifiers.
- Since:
- 1.22
Nested Class Summary |
static class |
SQLIdentifiers.Quoter
This is a utility class that is used to quote identifiers. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
createQuoter
public static SQLIdentifiers.Quoter createQuoter(DatabaseMetaData dbmd)
- Creates a new
SQLIdentifiers.Quoter
.
- Parameters:
dbmd
- The DatabaseMetaData
to use when working with identifiers.
The metadata object is used to determine when an identifier needs
to be quoted and what the quote string should be.
- Returns:
- a
Quoter
instance.