Uses of Class
org.eclipse.datatools.sqltools.parsers.sql.SQLParserException

Packages that use SQLParserException
org.eclipse.datatools.sqltools.parsers.sql   
org.eclipse.datatools.sqltools.parsers.sql.postparse   
org.eclipse.datatools.sqltools.parsers.sql.query   
org.eclipse.datatools.sqltools.parsers.sql.query.postparse   
org.eclipse.datatools.sqltools.sqlbuilder.model   
 

Uses of SQLParserException in org.eclipse.datatools.sqltools.parsers.sql
 

Methods in org.eclipse.datatools.sqltools.parsers.sql with parameters of type SQLParserException
 void SQLParserManager.printParseRuntimeException(SQLParserException e1)
           
 

Methods in org.eclipse.datatools.sqltools.parsers.sql that throw SQLParserException
 QueryStatement SQLParserManager.checkSyntax(java.lang.String stmt)
          Parses the given String representation of a SQL statement and returns an instance of the @link SQLQueryObject model (QueryStatement) which will have no references and contain no structural information about the given SQL statement.
 java.util.List SQLParserManager.checkSyntaxScript(java.lang.String script)
          Parses the given SQL script and returns a List of QueryStatements, which will have no references and contain no structural information about the given SQL statement.
 SQLParseResult SQLParserManager.parse(java.lang.String stmt)
          Parses the given String representation of a SQL statement into an instance of the SQLQueryObject model.
 java.util.List SQLParserManager.parseScript(java.lang.String script)
          Parses the given String representation of a SQL statement or a list of SQL statements separated by the statement terminator provided by the given format (SQLQuerySourceFormat.getStatementTerminator()).
 

Uses of SQLParserException in org.eclipse.datatools.sqltools.parsers.sql.postparse
 

Methods in org.eclipse.datatools.sqltools.parsers.sql.postparse that throw SQLParserException
 java.util.List PostParseProcessor.process(SQLQueryObject sqlQuery)
          The call back method invoked for each of the SQLQueryObjects in the SQLQueryObject model instance returned by the parser, if the SQLQueryObject complies with one of the types in the Class[] returned by this PostParseProcessor.getProcessCandidateTypes()
 

Uses of SQLParserException in org.eclipse.datatools.sqltools.parsers.sql.query
 

Methods in org.eclipse.datatools.sqltools.parsers.sql.query that throw SQLParserException
 QueryStatement SQLQueryParserManager.checkSyntaxQuery(java.lang.String stmt)
          Convenience proxy method for SQLParserManager.checkSyntax(String) casting the returned SQLStatement to QueryStatement.
 java.util.List SQLQueryParserManager.checkSyntaxQueryScript(java.lang.String script)
          Convenience proxy method for SQLParserManager.checkSyntaxScript(String) casting the returned SQLStatements to QueryStatements.
 SQLControlParseResult SQLQueryParserManager.parseControlStatement(java.lang.String stmt)
          Parses the given control statement string and returns the result of the parse.
 SQLQueryParseResult SQLQueryParserManager.parseQuery(java.lang.String stmt)
          Convenience proxy method for SQLParserManager.parse(String) casting the returned SQLParseResult to SQLQueryParseResult.
 java.util.List SQLQueryParserManager.parseQueryScript(java.lang.String script)
          Convenience proxy method for SQLParserManager.parseScript(String) casting the returned SQLParseResults to SQLQueryParseResults.
 

Uses of SQLParserException in org.eclipse.datatools.sqltools.parsers.sql.query.postparse
 

Methods in org.eclipse.datatools.sqltools.parsers.sql.query.postparse that throw SQLParserException
 java.util.List DataTypeResolver.process(SQLQueryObject sqlQuery)
           
 java.util.List TableReferenceResolver.process(SQLQueryObject sqlQuery)
           
 java.util.List RoutineReferenceResolver.process(SQLQueryObject queryObj)
          Post-parse processes the given SQL query object.
 

Uses of SQLParserException in org.eclipse.datatools.sqltools.sqlbuilder.model
 

Methods in org.eclipse.datatools.sqltools.sqlbuilder.model that throw SQLParserException
 QueryStatement SQLDomainModel.parse(java.lang.String sqlStr)
          Parses string SQL statement passed and returns the QueryStatement object.
 QueryStatement SQLDomainModel.parse(java.lang.String sqlStr, boolean createObjectTree)
          Parses string SQL statement passed and returns the QueryStatement object.If createObjectTree is false then parser is called for only a syntax check and only the toplevel statement object is constructed If parse fails it returns null.
 QueryStatement SQLDomainModel.parse(java.lang.String sqlStr, java.util.List errorList)
          Parses string SQL statement passed and returns the QueryStatement object.