Searched defs:addRowSet (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sql/rowset/
H A DJoinRowSet.java49 * <code>JointRowSet</code> method <code>addRowSet</code>.
124 * <code>addRowSet</code> that takes a column name or number (or an array of
126 * Four of the five <code>addRowSet</code> methods take a match column as a parameter.
157 * jrs.addRowSet(empl);
163 * jrs.addRowSet(bonus);
189 * jrs.addRowSet(four01k, 1);
248 public void addRowSet(Joinable rowset) throws SQLException; method in interface:JoinRowSet
270 public void addRowSet(RowSet rowset, int columnIdx) throws SQLException; method in interface:JoinRowSet
291 public void addRowSet(RowSet rowset, method in interface:JoinRowSet
323 public void addRowSet(RowSe method in interface:JoinRowSet
355 public void addRowSet(RowSet[] rowset, method in interface:JoinRowSet
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJoinRowSetImpl.java158 public void addRowSet(Joinable rowset) throws SQLException { method in class:JoinRowSetImpl
280 public void addRowSet(RowSet rowset, int columnIdx) throws SQLException { method in class:JoinRowSetImpl
285 addRowSet((Joinable)rowset);
309 public void addRowSet(RowSet rowset, String columnName) throws SQLException { method in class:JoinRowSetImpl
312 addRowSet((Joinable)rowset);
342 public void addRowSet(RowSet[] rowset, method in class:JoinRowSetImpl
351 addRowSet((Joinable)rowset[i]);
388 public void addRowSet(RowSet[] rowset, method in class:JoinRowSetImpl
398 addRowSet((Joinable)rowset[i]);

Completed in 43 milliseconds