447448449450451452453
* * @return true if the database supports a limit or false otherwise */ public void limitRows(int numRows) { throw new NotSupportedException(this, "limitRows"); }
458459460461462463464
* * @return true if the database supports an offset or false otherwise */ public void skipRows(int numRows) { throw new NotSupportedException(this, "skipRows"); }
117118119120121122123
* @return null */ @Override public DBColumn[] getKeyColumns() { throw new NotSupportedException(this, "getKeyColumns"); }
128129130131132133134
* @return null */ @Override public Object[] getRecordKey(DBRecord rec) { throw new NotSupportedException(this, "getRecordKey"); }
135136137138139140141
/** Returns the error message: ERR_NOTSUPPORTED */ @Override public void initRecord(DBRecord rec, Object[] keyValues) { throw new NotSupportedException(this, "initRecord"); }
142143144145146147148
/** Returns the error message: ERR_NOTSUPPORTED */ @Override public void createRecord(DBRecord rec, Connection conn) { throw new NotSupportedException(this, "addRecord"); }
149150151152153154155
/** Returns the error message: ERR_NOTSUPPORTED */ @Override public void readRecord(DBRecord rec, Object[] keys, Connection conn) { throw new NotSupportedException(this, "getRecord"); }
156157158159160161162
/** Returns the error message: ERR_NOTSUPPORTED */ @Override public void updateRecord(DBRecord rec, Connection conn) { throw new NotSupportedException(this, "updateRecord"); }
163164165166167168169
/** Returns the error message: ERR_NOTSUPPORTED */ @Override public void deleteRecord(Object[] keys, Connection conn) { throw new NotSupportedException(this, "deleteRecord"); }
273274275276277278279280
// Record not found throw new ItemNotFoundException(rowset.getName()); } // Other default: throw new NotSupportedException(this, "reloadRecord[] " + String.valueOf(persistence)); } }