MCPcopy Create free account
hub / github.com/androrm/androrm / on

Method on

src/src/com/orm/androrm/statement/JoinStatement.java:96–101  ·  view source on GitHub ↗

Defines on which columns this join should happen. @param leftColum Name of the column in the left table. @param rightColumn Name of the column in the right table. @return this for chaining.

(String leftColum, String rightColumn)

Source from the content-addressed store, hash-verified

94 * @return <code>this</code> for chaining.
95 */
96 public JoinStatement on(String leftColum, String rightColumn) {
97 mLeftColumn = leftColum;
98 mRightColumn = rightColumn;
99
100 return this;
101 }
102
103 /**
104 * Creates the right side of the join from a subselect and

Callers 8

testFromJoinMethod · 0.80
testPlainTableMethod · 0.80
testOnSubselectMethod · 0.80
filterMethod · 0.80
buildQueryMethod · 0.80
resolveRelationFieldMethod · 0.80
getJoinMethod · 0.80
getRightJoinSideMethod · 0.80

Calls

no outgoing calls

Tested by 3

testFromJoinMethod · 0.64
testPlainTableMethod · 0.64
testOnSubselectMethod · 0.64