Searched refs:INNER_JOIN (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DJoinRowSet.java93 * <LI><code>INNER_JOIN</code> - the default if no <code>JOIN</code> type has been set
135 * which is <i>INNER_JOIN</i>, is established.
427 * Indicates if INNER_JOIN is supported by a JoinRowSet
430 * @return true is the INNER_JOIN is supported; false otherwise
489 * standard JoinRowSet types: <code>CROSS_JOIN</code>, <code>INNER_JOIN</code>,
494 * definitions of a SQL <code>JOIN</code>. <code>JoinRowSet.INNER_JOIN</code>
512 public static int INNER_JOIN = 1; field in interface:JoinRowSet
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJoinRowSetImpl.java250 // default type is JoinRowSet.INNER_JOIN which should
252 // keep on adding join type as JoinRowSet.INNER_JOIN
486 * an SQL <code>INNER_JOIN</code> and <code>false</code> if it does not.
488 * @return true is the INNER_JOIN is supported; false otherwise
491 return supportedJOINs[JoinRowSet.INNER_JOIN];
540 * <code>JoinRowSet.INNER_JOIN</code>
551 if (type != JoinRowSet.INNER_JOIN) {
555 Integer Intgr = Integer.valueOf(JoinRowSet.INNER_JOIN);
616 // to set to JoinRowSet.INNER_JOIN.
626 // recently, so set it to setJoinType() to JoinRowSet.INNER_JOIN
[all...]

Completed in 34 milliseconds