read();
String property;
Object value;
HsqlDatabaseProperties props;
checkIsSimpleName();
checkIsDelimitedIdentifier();
property = token.tokenString;
props = database.getProperties();
boolean isboolean = props.isBoolean(token.tokenString);
boolean isintegral = props.isIntegral(token.tokenString);
boolean isstring = props.isString(token.tokenString);
if (!(isboolean || isintegral || isstring)) {
throw Error.error(ErrorCode.X_42511);
}