public default boolean isSimpleIdentifier (String identifier) throws SQLException

Retrieves whether identifier is a simple SQL identifier.

Parameters:
identifier    a SQL identifier

Returns:  true if a simple SQL identifier, false otherwise

Exceptions:
NullPointerException    if identifier is null
SQLException    if a database access error occurs

Since:  9

@implSpec The default implementation uses the following criteria to determine a valid simple SQL identifier:

Examples of the conversion:
identifier Simple Identifier
Hello true
G'Day false
"Bruce Wayne" false
GoodDay$ false
Hello"World false
"Hello"World" false

@implNote JDBC driver implementations may need to provide their own implementation of this method in order to meet the requirements of the underlying datasource.