KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > sql > rowset > JoinRowSet

javax.sql.rowset
Interface JoinRowSet

All Superinterfaces:
CachedRowSet, Joinable, ResultSet, RowSet, WebRowSet

void addRowSet(RowSet rowset,
               int columnIdx)
               throws SQLException
See Also:
Joinable.unsetMatchColumn(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void addRowSet(RowSet rowset,
               String columnName)
               throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void addRowSet(Joinable rowset)
               throws SQLException
See Also:
Joinable.setMatchColumn(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void addRowSet(RowSet[] rowset,
               int[] columnIdx)
               throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void addRowSet(RowSet[] rowset,
               String[] columnName)
               throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int CROSS_JOIN
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int FULL_JOIN
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


int getJoinType()
                throws SQLException
See Also:
setJoinType(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


String[] getRowSetNames()
                        throws SQLException
See Also:
CachedRowSet.setTableName(java.lang.String)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


Collection<?> getRowSets()
                         throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


String getWhereClause()
                      throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int INNER_JOIN
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int LEFT_OUTER_JOIN
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


static final int RIGHT_OUTER_JOIN
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setJoinType(int joinType)
                 throws SQLException
See Also:
getJoinType()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean supportsCrossJoin()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean supportsFullJoin()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean supportsInnerJoin()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean supportsLeftOuterJoin()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean supportsRightOuterJoin()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


CachedRowSet toCachedRowSet()
                            throws SQLException
See Also:
SyncProvider, RowSet
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags