1 7 8 package javax.sql; 9 10 import java.sql.*; 11 12 21 22 public interface RowSetInternal { 23 24 32 Object [] getParams() throws SQLException; 33 34 42 Connection getConnection() throws SQLException; 43 44 56 void setMetaData(RowSetMetaData md) throws SQLException; 57 58 69 public ResultSet getOriginal() throws SQLException; 70 71 83 public ResultSet getOriginalRow() throws SQLException; 84 85 } 86 87 88 89 90 91 | Popular Tags |