try {
return generateStub(server, sql, parser.parseStatement(sql),
parser.getParameterList(), paramTypes);
}
catch (SQLParserException ex) {
throw new SQLParseException(ex);
}
catch (StandardException ex) {
throw new SQLParserInternalException(ex);
}
}