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 LocalResult
CommandContainer.GeneratedKeysCollector. result
Constructors 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 LocalResult
Explain. result
private LocalResult
ScriptCommand. result
Methods in org.h2.command.dml that return LocalResult Modifier and Type Method Description private LocalResult
ScriptCommand. createResult()
Methods in org.h2.command.dml with parameters of type LocalResult Modifier and Type Method Description (package private) static void
Update. doUpdate(Prepared prepared, SessionLocal session, Table table, LocalResult rows)
(package private) boolean
SetClauseList. 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) LocalResult
Query. convertToDistinct(ResultInterface result)
Convert a result into a distinct result, using the current columns.private LocalResult
Select. createLocalResult(LocalResult old)
private LocalResult
SelectUnion. createLocalResult(int columnCount)
(package private) LocalResult
Query. 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.LocalResult
SelectUnion. getEmptyResult()
Methods in org.h2.command.query with parameters of type LocalResult Modifier and Type Method Description private LocalResult
Select. createLocalResult(LocalResult old)
(package private) LocalResult
Query. 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 void
Select. processGroupResult(int columnCount, LocalResult result, long offset, boolean quickOffset, boolean withHaving)
private void
Select. queryGroup(int columnCount, LocalResult result, long offset, boolean quickOffset)
private void
Select. queryGroupWindow(int columnCount, LocalResult result, long offset, boolean quickOffset)
private void
Select. 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 LocalResult
UniquePredicate.Target. result
Constructors 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 LocalResult
LocalResult. createShallowCopy(Session targetSession)
Create a shallow copy of the result set.static LocalResult
LocalResult. 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 void
Table. updateRows(Prepared prepared, SessionLocal session, LocalResult rows)
Update a list of rows in this table.void
TableLink. updateRows(Prepared prepared, SessionLocal session, LocalResult rows)
-