Uses of Class
org.h2.result.LocalResult
-
Packages that use LocalResult Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.command.dml Contains DML (data manipulation language) and related SQL statements.org.h2.command.query Contains queries.org.h2.expression.condition Condition expressions.org.h2.result Implementation of row and internal result sets.org.h2.table Classes related to a table and table meta data. -
-
Uses of LocalResult in org.h2.command
Fields in org.h2.command declared as LocalResult Modifier and Type Field Description private LocalResultCommandContainer.GeneratedKeysCollector. resultConstructors in org.h2.command with parameters of type LocalResult Constructor Description GeneratedKeysCollector(int[] indexes, LocalResult result) -
Uses of LocalResult in org.h2.command.dml
Fields in org.h2.command.dml declared as LocalResult Modifier and Type Field Description private LocalResultExplain. resultprivate LocalResultScriptCommand. resultMethods in org.h2.command.dml that return LocalResult Modifier and Type Method Description private LocalResultScriptCommand. createResult()Methods in org.h2.command.dml with parameters of type LocalResult Modifier and Type Method Description (package private) static voidUpdate. doUpdate(Prepared prepared, SessionLocal session, Table table, LocalResult rows)(package private) booleanSetClauseList. prepareUpdate(Table table, SessionLocal session, ResultTarget deltaChangeCollector, DataChangeDeltaTable.ResultOption deltaChangeCollectionMode, LocalResult rows, Row oldRow, boolean updateToCurrentValuesReturnsZero) -
Uses of LocalResult in org.h2.command.query
Methods in org.h2.command.query that return LocalResult Modifier and Type Method Description (package private) LocalResultQuery. convertToDistinct(ResultInterface result)Convert a result into a distinct result, using the current columns.private LocalResultSelect. createLocalResult(LocalResult old)private LocalResultSelectUnion. createLocalResult(int columnCount)(package private) LocalResultQuery. finishResult(LocalResult result, long offset, long fetch, boolean fetchPercent, ResultTarget target)Applies limits, if any, to a result and makes it ready for value retrieval.LocalResultSelectUnion. getEmptyResult()Methods in org.h2.command.query with parameters of type LocalResult Modifier and Type Method Description private LocalResultSelect. createLocalResult(LocalResult old)(package private) LocalResultQuery. finishResult(LocalResult result, long offset, long fetch, boolean fetchPercent, ResultTarget target)Applies limits, if any, to a result and makes it ready for value retrieval.private voidSelect. processGroupResult(int columnCount, LocalResult result, long offset, boolean quickOffset, boolean withHaving)private voidSelect. queryGroup(int columnCount, LocalResult result, long offset, boolean quickOffset)private voidSelect. queryGroupWindow(int columnCount, LocalResult result, long offset, boolean quickOffset)private voidSelect. queryWindow(int columnCount, LocalResult result, long offset, boolean quickOffset) -
Uses of LocalResult in org.h2.expression.condition
Fields in org.h2.expression.condition declared as LocalResult Modifier and Type Field Description private LocalResultUniquePredicate.Target. resultConstructors in org.h2.expression.condition with parameters of type LocalResult Constructor Description Target(int columnCount, LocalResult result) -
Uses of LocalResult in org.h2.result
Methods in org.h2.result that return LocalResult Modifier and Type Method Description LocalResultLocalResult. createShallowCopy(Session targetSession)Create a shallow copy of the result set.static LocalResultLocalResult. forTable(SessionLocal session, Table table)Constructs a new local result object for the specified table. -
Uses of LocalResult in org.h2.table
Methods in org.h2.table with parameters of type LocalResult Modifier and Type Method Description voidTable. updateRows(Prepared prepared, SessionLocal session, LocalResult rows)Update a list of rows in this table.voidTableLink. updateRows(Prepared prepared, SessionLocal session, LocalResult rows)
-