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

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

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

Methods in org.eclipse.datatools.sqltools.parsers.sql that throw SQLParserInternalException
 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()).
 

Constructors in org.eclipse.datatools.sqltools.parsers.sql that throw SQLParserInternalException
SQLParser(lpg.lpgjavaruntime.LexStream lexStream, lpg.lpgjavaruntime.ParseTable prs, int EOFTsymbol, boolean checkStmtOnly)
           
SQLParser(lpg.lpgjavaruntime.LexStream lexStream, lpg.lpgjavaruntime.ParseTable prs, int EOFTsymbol, SQLQuerySourceFormat sourceFormat)
           
SQLParser(lpg.lpgjavaruntime.LexStream lexStream, lpg.lpgjavaruntime.ParseTable prs, int EOFTsymbol, SQLQuerySourceFormat p_sourceFormat, boolean checkStmtOnly)
           
 

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

Methods in org.eclipse.datatools.sqltools.parsers.sql.query that throw SQLParserInternalException
 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.
 

Constructors in org.eclipse.datatools.sqltools.parsers.sql.query that throw SQLParserInternalException
AbstractSQLQueryParser(lpg.lpgjavaruntime.LexStream lexStream, lpg.lpgjavaruntime.ParseTable prs, int EOFTsymbol, boolean checkStmtOnly)
           
AbstractSQLQueryParser(lpg.lpgjavaruntime.LexStream lexStream, lpg.lpgjavaruntime.ParseTable prs, int EOFTsymbol, SQLQuerySourceFormat sourceFormat)
           
AbstractSQLQueryParser(lpg.lpgjavaruntime.LexStream lexStream, lpg.lpgjavaruntime.ParseTable prs, int EOFTsymbol, SQLQuerySourceFormat p_sourceFormat, boolean checkStmtOnly)
           
 

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

Methods in org.eclipse.datatools.sqltools.sqlbuilder.model that throw SQLParserInternalException
 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.