1 7 8 package javax.sql.rowset; 9 10 import java.sql.*; 11 import javax.sql.*; 12 import javax.naming.*; 13 import java.io.*; 14 import java.math.*; 15 import java.io.*; 16 17 105 106 public interface JdbcRowSet extends RowSet, Joinable { 107 108 132 public boolean getShowDeleted() throws SQLException; 133 134 154 public void setShowDeleted(boolean b) throws SQLException; 155 156 189 public RowSetWarning getRowSetWarnings() throws SQLException; 190 191 206 public void commit() throws SQLException; 207 208 209 226 public boolean getAutoCommit() throws SQLException; 227 228 229 242 public void setAutoCommit(boolean autoCommit) throws SQLException; 243 244 255 public void rollback() throws SQLException; 256 257 258 269 public void rollback(Savepoint s) throws SQLException; 270 271 } 272 273 | Popular Tags |