Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.hsqldb.Result

Uses of Result in org.hsqldb
 

Fields in org.hsqldb declared as Result
private  Result jdbcResultSet.rResult
          The internal representation.
 

Methods in org.hsqldb that return Result
(package private)  Result Select.getResult(int maxrows)
          maxrow may be 0 to indicate no limit on the number of rows, or -1 to indicate 0 size result (used for pre-processing the selects in view statements.
(package private)  Result Parser.processSelect()
          Method declaration
(package private)  Result Parser.processCall()
          Method declaration
(package private)  Result Parser.processUpdate()
          Method declaration
(package private)  Result Parser.processDelete()
          Method declaration
(package private)  Result Parser.processInsert()
          Method declaration
(package private) static Result DatabaseScript.getScript(Database dDatabase, boolean bDrop, boolean bInsert, boolean bCached, Session session)
          Method declaration
(package private)  Result Database.execute(java.lang.String statement, Session session)
          The main SQL statement executor.
(package private)  Result Database.getScript(boolean drop, boolean insert, boolean cached, Session session)
          Generates a SQL script containing all or part of the SQL statements required to recreate the current state of this Database object.
private  Result Database.processScript(Tokenizer c, Session session)
          Responsible for parsing and executing the SCRIPT SQL statement
private  Result Database.processCreate(Tokenizer c, Session session)
          Responsible for handling the parse and execution of CREATE SQL statements.
private  Result Database.processAlter(Tokenizer c, Session session)
          'RENAME' declaration.
private  Result Database.processDrop(Tokenizer c, Session session)
          Method declaration
private  Result Database.processGrantOrRevoke(Tokenizer c, Session session, boolean grant)
          Responsible for handling the execution of GRANT and REVOKE SQL statements.
private  Result Database.processConnect(Tokenizer c, Session session)
          Responsible for handling the execution CONNECT SQL statements
private  Result Database.processDisconnect(Session session)
          Responsible for handling the execution DISCONNECT SQL statements
private  Result Database.processSet(Tokenizer c, Session session)
          Responsible for handling the execution SET SQL statements
private  Result Database.processCommit(Tokenizer c, Session session)
          Responsible for handling the execution COMMIT SQL statements
private  Result Database.processRollback(Tokenizer c, Session session)
          Responsible for handling the execution ROLLBACK SQL statementsn
private  Result Database.processSavepoint(Tokenizer c, Session session)
          Responsible for handling the execution of SAVEPOINT SQL statements.
private  Result Database.processShutdown(Tokenizer c, Session session)
          Responsible for handling the execution SHUTDOWN SQL statements
private  Result Database.processCheckpoint(Session session)
          Responsible for handling the parse and execution of CHECKPOINT SQL statements.
 

Methods in org.hsqldb with parameters of type Result
(package private)  void View.addColumns(Result result)
           
(package private)  void TextTable.checkUpdate(int[] col, Result deleted, Result inserted)
           
(package private)  void Table.addColumns(Result result)
          Method declaration
(package private)  void Table.checkUpdate(int[] col, Result deleted, Result inserted)
          Method declaration
(package private)  void Table.insert(Result result, Session c)
          Method declaration
private  void Select.addAggregateRow(Result x, java.lang.Object[] row, int len, int count)
          Method declaration
private  void Select.buildResult(Result r, int limitcount)
           
private  void Select.groupResult(Result r)
           
private  void Select.buildDistinctAggregates(Result r)
           
(package private)  void Result.append(Result a)
          Method declaration
(package private)  void Result.setRows(Result a)
          Method declaration
(package private)  void Result.removeSecond(Result minus)
          Method declaration
(package private)  void Result.removeDifferent(Result r2)
          Method declaration
private static void DatabaseScript.addRow(Result r, java.lang.String sql)
          Method declaration
(package private)  void Constraint.checkUpdate(int[] col, Result deleted, Result inserted)
          Checks if updating a set of columns in a table row breaks the referential integrity constraint.
 

Constructors in org.hsqldb with parameters of type Result
jdbcResultSet(Result r, HsqlProperties props)
          Constructs a new jdbcResultSet object using the specified org.hsqldb.Result.