| java.lang.Object com.quadcap.sql.Row com.quadcap.sql.JoinNaturalRow
JoinNaturalRow | public class JoinNaturalRow extends Row (Code) | | A row containing a natural join, all columns from each of two cursors,
with only one instance of the join columns.
author: Stan Bailes |
Constructor Summary | |
public | JoinNaturalRow(Row a, Row b, int[] aMap, int[] bMap) Parameters: a - the left row Parameters: b - the right row Parameters: aMap - map columns from their join row position to their positionin the left row. |
JoinNaturalRow | public JoinNaturalRow(Row a, Row b, int[] aMap, int[] bMap)(Code) | | Parameters: a - the left row Parameters: b - the right row Parameters: aMap - map columns from their join row position to their positionin the left row. Zero based. Parameters: bMap - map columns from their join row offset to their positionin the right row. Zero based. |
|
|