Uses of Class
org.h2.result.Row
-
Packages that use Row Package Description org.h2.command.dml Contains DML (data manipulation language) and related SQL statements.org.h2.constraint Database constraints such as check constraints, unique constraints, and referential constraints.org.h2.index Various table index implementations, as well as cursors to navigate in an index.org.h2.mode Utility classes for compatibility with other database, for example MySQL.org.h2.mvstore.db Helper classes to use the MVStore in the H2 database.org.h2.result Implementation of row and internal result sets.org.h2.schema Schema implementation and objects that are stored in a schema (for example, sequences and constants).org.h2.table Classes related to a table and table meta data.org.h2.tools Various tools. -
-
Uses of Row in org.h2.command.dml
Methods in org.h2.command.dml with parameters of type Row Modifier and Type Method Description private int
Merge. merge(Row row, Expression[] expressions, ResultTarget deltaChangeCollector, DataChangeDeltaTable.ResultOption deltaChangeCollectionMode)
Updates an existing row or inserts a new one.(package private) boolean
SetClauseList. prepareUpdate(Table table, SessionLocal session, ResultTarget deltaChangeCollector, DataChangeDeltaTable.ResultOption deltaChangeCollectionMode, LocalResult rows, Row oldRow, boolean updateToCurrentValuesReturnsZero)
-
Uses of Row in org.h2.constraint
Methods in org.h2.constraint with parameters of type Row Modifier and Type Method Description abstract void
Constraint. checkRow(SessionLocal session, Table t, Row oldRow, Row newRow)
Check if this row fulfils the constraint.void
ConstraintCheck. checkRow(SessionLocal session, Table t, Row oldRow, Row newRow)
void
ConstraintDomain. checkRow(SessionLocal session, Table t, Row oldRow, Row newRow)
private void
ConstraintReferential. checkRow(SessionLocal session, Row oldRow)
void
ConstraintReferential. checkRow(SessionLocal session, Table t, Row oldRow, Row newRow)
void
ConstraintUnique. checkRow(SessionLocal session, Table t, Row oldRow, Row newRow)
private void
ConstraintReferential. checkRowOwnTable(SessionLocal session, Row oldRow, Row newRow)
private void
ConstraintReferential. checkRowRefTable(SessionLocal session, Row oldRow, Row newRow)
private boolean
ConstraintReferential. existsRow(SessionLocal session, Index searchIndex, SearchRow check, Row excluding)
private boolean
ConstraintReferential. isEqual(Row oldRow, Row newRow)
private void
ConstraintReferential. setWhere(Prepared command, int pos, Row row)
-
Uses of Row in org.h2.index
Fields in org.h2.index declared as Row Modifier and Type Field Description private Row
LinkedCursor. current
private Row
MetaCursor. current
private Row
ViewCursor. current
private Row
DualCursor. currentRow
private Row
RangeCursor. currentRow
private Row
SingleRowCursor. row
(package private) Row
VirtualTableCursor. row
Fields in org.h2.index with type parameters of type Row Modifier and Type Field Description private java.util.ArrayList<Row>
MetaCursor. rows
Methods in org.h2.index that return Row Modifier and Type Method Description Row
Cursor. get()
Get the complete current row.Row
DualCursor. get()
Row
IndexCursor. get()
Row
LinkedCursor. get()
Row
MetaCursor. get()
Row
RangeCursor. get()
Row
SingleRowCursor. get()
Row
ViewCursor. get()
Row
VirtualTableCursor. get()
Row
Index. getRow(SessionLocal session, long key)
Get the row with the given key.Methods in org.h2.index with parameters of type Row Modifier and Type Method Description abstract void
Index. add(SessionLocal session, Row row)
Add a row to the index.void
LinkedIndex. add(SessionLocal session, Row row)
void
MetaIndex. add(SessionLocal session, Row row)
void
ViewIndex. add(SessionLocal session, Row row)
void
VirtualTableIndex. add(SessionLocal session, Row row)
abstract void
Index. remove(SessionLocal session, Row row)
Remove a row from the index.void
LinkedIndex. remove(SessionLocal session, Row row)
void
MetaIndex. remove(SessionLocal session, Row row)
void
ViewIndex. remove(SessionLocal session, Row row)
void
VirtualTableIndex. remove(SessionLocal session, Row row)
void
Index. update(SessionLocal session, Row oldRow, Row newRow)
Update index after row change.void
LinkedIndex. update(Row oldRow, Row newRow, SessionLocal session)
Update a row using a UPDATE statement.Constructors in org.h2.index with parameters of type Row Constructor Description SingleRowCursor(Row row)
Create a new cursor.Constructor parameters in org.h2.index with type arguments of type Row Constructor Description MetaCursor(java.util.ArrayList<Row> rows)
-
Uses of Row in org.h2.mode
Methods in org.h2.mode that return types with arguments of type Row Modifier and Type Method Description java.util.ArrayList<Row>
PgCatalogTable. generateRows(SessionLocal session, SearchRow first, SearchRow last)
Method parameters in org.h2.mode with type arguments of type Row Modifier and Type Method Description private void
PgCatalogTable. addAttribute(SessionLocal session, java.util.ArrayList<Row> rows, int id, int relId, Table table, Column column, int ordinal)
private void
PgCatalogTable. addClass(SessionLocal session, java.util.ArrayList<Row> rows, int id, java.lang.String name, int schema, java.lang.String kind, boolean index, int triggers)
private void
PgCatalogTable. pgAttribute(SessionLocal session, java.util.ArrayList<Row> rows, Table table)
private void
PgCatalogTable. pgClass(SessionLocal session, java.util.ArrayList<Row> rows, Table table)
private void
PgCatalogTable. pgConstraint(SessionLocal session, java.util.ArrayList<Row> rows)
-
Uses of Row in org.h2.mvstore.db
Fields in org.h2.mvstore.db declared as Row Modifier and Type Field Description private Row
MVPrimaryIndex.MVStoreCursor. row
private Row
MVSecondaryIndex.MVStoreCursor. row
private Row
MVSpatialIndex.MVStoreCursor. row
Methods in org.h2.mvstore.db that return Row Modifier and Type Method Description Row
MVPrimaryIndex.MVStoreCursor. get()
Row
MVSecondaryIndex.MVStoreCursor. get()
Row
MVSpatialIndex.MVStoreCursor. get()
Row
MVDelegateIndex. getRow(SessionLocal session, long key)
Row
MVPrimaryIndex. getRow(SessionLocal session, long key)
Row
MVTable. getRow(SessionLocal session, long key)
(package private) Row
MVPrimaryIndex. lockRow(SessionLocal session, Row row)
Lock a single row.private Row
MVPrimaryIndex. lockRow(TransactionMap<java.lang.Long,SearchRow> map, long key)
Row
MVTable. lockRow(SessionLocal session, Row row)
private static Row
MVPrimaryIndex. setRowKey(Row row, long key)
Methods in org.h2.mvstore.db with parameters of type Row Modifier and Type Method Description void
MVDelegateIndex. add(SessionLocal session, Row row)
void
MVPrimaryIndex. add(SessionLocal session, Row row)
void
MVSecondaryIndex. add(SessionLocal session, Row row)
void
MVSpatialIndex. add(SessionLocal session, Row row)
void
MVTable. addRow(SessionLocal session, Row row)
(package private) Row
MVPrimaryIndex. lockRow(SessionLocal session, Row row)
Lock a single row.Row
MVTable. lockRow(SessionLocal session, Row row)
void
MVDelegateIndex. remove(SessionLocal session, Row row)
void
MVPrimaryIndex. remove(SessionLocal session, Row row)
void
MVSecondaryIndex. remove(SessionLocal session, Row row)
void
MVSpatialIndex. remove(SessionLocal session, Row row)
void
MVTable. removeRow(SessionLocal session, Row row)
private static Row
MVPrimaryIndex. setRowKey(Row row, long key)
void
MVDelegateIndex. update(SessionLocal session, Row oldRow, Row newRow)
void
MVPrimaryIndex. update(SessionLocal session, Row oldRow, Row newRow)
void
MVSecondaryIndex. update(SessionLocal session, Row oldRow, Row newRow)
void
MVTable. updateRow(SessionLocal session, Row oldRow, Row newRow)
Method parameters in org.h2.mvstore.db with type arguments of type Row Modifier and Type Method Description void
MVDelegateIndex. addRowsToBuffer(java.util.List<Row> rows, java.lang.String bufferName)
abstract void
MVIndex. addRowsToBuffer(java.util.List<Row> rows, java.lang.String bufferName)
Add the rows to a temporary storage (not to the index yet).void
MVPrimaryIndex. addRowsToBuffer(java.util.List<Row> rows, java.lang.String bufferName)
void
MVSecondaryIndex. addRowsToBuffer(java.util.List<Row> rows, java.lang.String bufferName)
void
MVSpatialIndex. addRowsToBuffer(java.util.List<Row> rows, java.lang.String bufferName)
private static void
MVTable. addRowsToIndex(SessionLocal session, java.util.ArrayList<Row> list, Index index)
Appends the specified rows to the specified index. -
Uses of Row in org.h2.result
Subclasses of Row in org.h2.result Modifier and Type Class Description class
DefaultRow
The default implementation of a row in a table.class
Sparse
Class Sparse.Methods in org.h2.result that return Row Modifier and Type Method Description abstract Row
RowFactory. createRow(Value[] data, int memory)
Create a new row.Row
RowFactory.DefaultRowFactory. createRow(Value[] data, int memory)
Row
LocalResult. currentRowForTable()
Retrieve the current rowstatic Row
Row. get(Value[] data, int memory)
Creates a new row.static Row
Row. get(Value[] data, int memory, long key)
Creates a new row with the specified key.Methods in org.h2.result with parameters of type Row Modifier and Type Method Description void
LocalResult. addRowForTable(Row row)
Add a row for a table.boolean
Row. hasSameValues(Row other)
Check whether values of this row are equal to values of other row.boolean
DefaultRow. hasSharedData(Row other)
boolean
Row. hasSharedData(Row other)
Check whether this row and the specified row share the same underlying data with values. -
Uses of Row in org.h2.schema
Methods in org.h2.schema with parameters of type Row Modifier and Type Method Description private static java.lang.Object[]
TriggerObject. convertToObjectList(Row row, JdbcConnection conn)
private static JdbcResultSet
TriggerObject. createResultSet(JdbcConnection conn, Table table, Row row, boolean updatable)
boolean
TriggerObject. fireRow(SessionLocal session, Table table, Row oldRow, Row newRow, boolean beforeAction, boolean rollback)
Call the fire method of the user-defined trigger class if required. -
Uses of Row in org.h2.table
Fields in org.h2.table declared as Row Modifier and Type Field Description private Row
GeneratedColumnResolver. current
private Row
TableFilter. current
private Row
Table. nullRow
Methods in org.h2.table that return Row Modifier and Type Method Description Row
Table. createRow(Value[] data, int memory)
Create a new row for this table.Row
TableFilter. get()
Get the current row.Row
Table. getNullRow()
Row
Table. getRow(SessionLocal session, long key)
Get the given row.Row
Table. getTemplateRow()
Row
Table. lockRow(SessionLocal session, Row row)
Locks row, preventing any updated to it, except from the session specified.Methods in org.h2.table that return types with arguments of type Row Modifier and Type Method Description java.util.ArrayList<Row>
InformationSchemaTable. generateRows(SessionLocal session, SearchRow first, SearchRow last)
java.util.ArrayList<Row>
InformationSchemaTableLegacy. generateRows(SessionLocal session, SearchRow first, SearchRow last)
abstract java.util.ArrayList<Row>
MetaTable. generateRows(SessionLocal session, SearchRow first, SearchRow last)
Generate the data for the given metadata table using the given first and last row filters.Methods in org.h2.table with parameters of type Row Modifier and Type Method Description void
MetaTable. addRow(SessionLocal session, Row row)
abstract void
Table. addRow(SessionLocal session, Row row)
Add a row to the table and all indexes.void
TableLink. addRow(SessionLocal session, Row row)
void
TableView. addRow(SessionLocal session, Row row)
void
VirtualTable. addRow(SessionLocal session, Row row)
static void
DataChangeDeltaTable. collectInsertedFinalRow(SessionLocal session, Table table, ResultTarget deltaChangeCollector, DataChangeDeltaTable.ResultOption deltaChangeCollectionMode, Row newRow)
Collects final row for INSERT operations.void
Table. convertInsertRow(SessionLocal session, Row row, java.lang.Boolean overridingSystem)
Prepares the specified row for INSERT operation.void
TableLink. convertInsertRow(SessionLocal session, Row row, java.lang.Boolean overridingSystem)
private void
TableLink. convertRow(SessionLocal session, Row row)
void
Table. convertUpdateRow(SessionLocal session, Row row, boolean fromTrigger)
Prepares the specified row for UPDATE operation.void
TableLink. convertUpdateRow(SessionLocal session, Row row, boolean fromTrigger)
void
Table. fireAfterRow(SessionLocal session, Row oldRow, Row newRow, boolean rollback)
Fire all triggers that need to be called after a row is updated.boolean
Table. fireBeforeRow(SessionLocal session, Row oldRow, Row newRow)
Fire all triggers that need to be called before a row is updated.private void
Table. fireConstraints(SessionLocal session, Row oldRow, Row newRow, boolean before)
private boolean
Table. fireRow(SessionLocal session, Row oldRow, Row newRow, boolean beforeAction, boolean rollback)
private Value
Column. getDefaultOrGenerated(SessionLocal session, Row row)
Row
Table. lockRow(SessionLocal session, Row row)
Locks row, preventing any updated to it, except from the session specified.void
MetaTable. removeRow(SessionLocal session, Row row)
abstract void
Table. removeRow(SessionLocal session, Row row)
Remove a row from the table and all indexes.void
TableLink. removeRow(SessionLocal session, Row row)
void
TableView. removeRow(SessionLocal session, Row row)
void
VirtualTable. removeRow(SessionLocal session, Row row)
(package private) void
GeneratedColumnResolver. set(Row current)
Set the current row.void
TableFilter. set(Row current)
Set the current row.void
Table. updateRow(SessionLocal session, Row oldRow, Row newRow)
Update a row to the table and all indexes.(package private) Value
Column. validateConvertUpdateSequence(SessionLocal session, Value value, Row row)
Validate the value, convert it if required, and update the sequence value if required.Method parameters in org.h2.table with type arguments of type Row Modifier and Type Method Description protected void
MetaTable. add(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.Object... stringsOrValues)
Add a row to a list.private void
InformationSchemaTable. addConstraintColumnUsage(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint, Column column)
private void
InformationSchemaTableLegacy. addConstraintColumnUsage(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint, Column column)
private void
InformationSchemaTable. addPrivilege(SessionLocal session, java.util.ArrayList<Row> rows, DbObject grantee, java.lang.String catalog, Table table, java.lang.String column, java.lang.String right)
private void
InformationSchemaTableLegacy. addPrivilege(SessionLocal session, java.util.ArrayList<Row> rows, DbObject grantee, java.lang.String catalog, Table table, java.lang.String column, java.lang.String right)
private void
InformationSchemaTable. addPrivileges(SessionLocal session, java.util.ArrayList<Row> rows, DbObject grantee, java.lang.String catalog, Table table, java.lang.String column, int rightMask)
private void
InformationSchemaTableLegacy. addPrivileges(SessionLocal session, java.util.ArrayList<Row> rows, DbObject grantee, java.lang.String catalog, Table table, java.lang.String column, int rightMask)
private void
InformationSchemaTable. checkConstraints(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint, java.lang.String constraintName)
private void
InformationSchemaTable. checkConstraints(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. collations(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. collations(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, java.lang.String mainSchemaName, java.lang.String name, java.lang.String languageTag)
private void
InformationSchemaTable. columnPrivileges(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. columns(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, java.lang.String mainSchemaName, java.lang.String collation, Table table, java.lang.String tableName)
private void
InformationSchemaTable. columns(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, java.lang.String mainSchemaName, java.lang.String collation, Table table, java.lang.String tableName, Column c, int ordinalPosition)
private void
InformationSchemaTable. columns(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. constants(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, java.lang.String mainSchemaName, java.lang.String collation, Constant constant, java.lang.String constantName)
private void
InformationSchemaTable. constants(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. constraintColumnUsage(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. constraintColumnUsage(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint)
private void
InformationSchemaTable. domainConstraints(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, ConstraintDomain constraint, Domain domain, java.lang.String domainName)
private void
InformationSchemaTable. domainConstraints(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. domains(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, java.lang.String mainSchemaName, java.lang.String collation, Domain domain, java.lang.String domainName)
private void
InformationSchemaTable. domains(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. elementTypes(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, java.lang.String mainSchemaName, java.lang.String collation, java.lang.String objectSchema, java.lang.String objectName, java.lang.String objectType, java.lang.String collectionIdentifier, java.lang.String dtdIdentifier, TypeInfo typeInfo)
private void
InformationSchemaTable. elementTypesFields(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, int type)
private void
InformationSchemaTable. elementTypesFieldsForTable(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, int type, java.lang.String mainSchemaName, java.lang.String collation, java.lang.String schemaName, Table table)
private void
InformationSchemaTable. elementTypesFieldsRow(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, int type, java.lang.String mainSchemaName, java.lang.String collation, java.lang.String objectSchema, java.lang.String objectName, java.lang.String objectType, java.lang.String identifier, TypeInfo typeInfo)
private void
InformationSchemaTable. enumValues(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, java.lang.String objectSchema, java.lang.String objectName, java.lang.String objectType, java.lang.String enumIdentifier, TypeInfo typeInfo)
private void
InformationSchemaTable. fields(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, java.lang.String mainSchemaName, java.lang.String collation, java.lang.String objectSchema, java.lang.String objectName, java.lang.String objectType, java.lang.String rowIdentifier, java.lang.String fieldName, int ordinalPosition, java.lang.String dtdIdentifier, TypeInfo typeInfo)
private void
InformationSchemaTable. indexColumns(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Table table, java.lang.String tableName, Index index)
private void
InformationSchemaTable. indexes(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, boolean columns, Table table, java.lang.String tableName)
private void
InformationSchemaTable. indexes(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Table table, java.lang.String tableName, Index index)
private void
InformationSchemaTable. indexes(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog, boolean columns)
private void
InformationSchemaTable. inDoubt(SessionLocal session, java.util.ArrayList<Row> rows)
private void
InformationSchemaTable. informationSchemaCatalogName(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. keyColumnUsage(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint, Constraint.Type constraintType, IndexColumn[] indexColumns, Table table, java.lang.String tableName)
private void
InformationSchemaTable. keyColumnUsage(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. locks(SessionLocal session, java.util.ArrayList<Row> rows)
private void
InformationSchemaTable. locks(SessionLocal session, java.util.ArrayList<Row> rows, SessionLocal sessionWithLocks)
private void
InformationSchemaTable. parameters(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. parameters(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, java.lang.String mainSchemaName, java.lang.String collation, java.lang.String schema, java.lang.String specificName, TypeInfo typeInfo, int pos)
private void
InformationSchemaTable. queryStatistics(SessionLocal session, java.util.ArrayList<Row> rows)
private void
InformationSchemaTable. referentialConstraints(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, ConstraintReferential constraint, java.lang.String constraintName)
private void
InformationSchemaTable. referentialConstraints(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. rights(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows)
private void
InformationSchemaTable. roles(SessionLocal session, java.util.ArrayList<Row> rows)
private void
InformationSchemaTable. routines(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. routines(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, java.lang.String mainSchemaName, java.lang.String collation, java.lang.String schema, java.lang.String name, java.lang.String specificName, java.lang.String routineType, java.lang.String definition, java.lang.String externalName, TypeInfo typeInfo, boolean deterministic, java.lang.String remarks)
private void
InformationSchemaTable. schemata(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. sequences(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Sequence sequence, java.lang.String sequenceName)
private void
InformationSchemaTable. sequences(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. sessions(SessionLocal session, java.util.ArrayList<Row> rows)
private void
InformationSchemaTable. sessions(SessionLocal session, java.util.ArrayList<Row> rows, SessionLocal s)
private void
InformationSchemaTable. sessionState(SessionLocal session, java.util.ArrayList<Row> rows)
private void
InformationSchemaTable. settings(SessionLocal session, java.util.ArrayList<Row> rows)
private void
InformationSchemaTable. synonyms(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. tableConstraints(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Constraint constraint, Constraint.Type constraintType, Table table, java.lang.String tableName)
private void
InformationSchemaTable. tableConstraints(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. tablePrivileges(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. tables(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Table table, java.lang.String tableName)
private void
InformationSchemaTable. tables(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. triggers(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, TriggerObject trigger, java.lang.String eventManipulation, Table table, java.lang.String tableName)
private void
InformationSchemaTable. triggers(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
private void
InformationSchemaTable. users(SessionLocal session, java.util.ArrayList<Row> rows)
private void
InformationSchemaTable. users(SessionLocal session, java.util.ArrayList<Row> rows, User user)
private void
InformationSchemaTable. views(SessionLocal session, java.util.ArrayList<Row> rows, java.lang.String catalog, Table table, java.lang.String tableName)
private void
InformationSchemaTable. views(SessionLocal session, Value indexFrom, Value indexTo, java.util.ArrayList<Row> rows, java.lang.String catalog)
-
Uses of Row in org.h2.tools
Methods in org.h2.tools with parameters of type Row Modifier and Type Method Description private void
Recover. writeMetaRow(Row r)
-