KickJava   Java API By Example, From Geeks To Geeks.

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

javax.sql.rowset
Interface Joinable

All Known Subinterfaces:
CachedRowSet, FilteredRowSet, JdbcRowSet, JoinRowSet, WebRowSet
See Also:
Source Code

int[] getMatchColumnIndexes()
                            throws SQLException
See Also:
unsetMatchColumn(int), setMatchColumn(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


String[] getMatchColumnNames()
                             throws SQLException
See Also:
unsetMatchColumn(int), setMatchColumn(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setMatchColumn(int columnIdx)
                    throws SQLException
See Also:
setMatchColumn(int[])
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setMatchColumn(int[] columnIdxes)
                    throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


[1406]setMatchColumn doesnt work
By Anonymous on 2005/04/29 14:50:17  Rate
this doesnt work!!! wht a shame!!!

void setMatchColumn(String columnName)
                    throws SQLException
See Also:
setMatchColumn(int[]), unsetMatchColumn(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void setMatchColumn(String[] columnNames)
                    throws SQLException
See Also:
setMatchColumn(int[]), unsetMatchColumn(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


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


void unsetMatchColumn(int[] columnIdxes)
                      throws SQLException
See Also:
setMatchColumn(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void unsetMatchColumn(String columnName)
                      throws SQLException
See Also:
setMatchColumn(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


void unsetMatchColumn(String[] columnName)
                      throws SQLException
See Also:
setMatchColumn(int)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags