Uses of Class
suncertify.db.RecordNotFoundException

Packages that use RecordNotFoundException
suncertify.common   
suncertify.db   
 

Uses of RecordNotFoundException in suncertify.common
 

Methods in suncertify.common that throw RecordNotFoundException
 void QueryInterfaceImpl.delete(int recNo, java.lang.String clientId)
          Deletes a record, making the record number and associated disk storage available for reuse.
 int[] QueryInterfaceImpl.find(java.lang.String[] criteria, java.lang.String clientId)
          Returns an array of record numbers that match the specified criteria.
 boolean QueryInterfaceImpl.isLocked(int recNo, java.lang.String clientId)
          Determines if a record is currenly locked.
 void QueryInterfaceImpl.lock(int recNo, java.lang.String clientId)
          Locks a record so that it can only be updated or deleted by this client.
 java.lang.String[] QueryInterfaceImpl.read(int recNo, java.lang.String clientId)
          Reads a record from the file.
 void QueryInterfaceImpl.unlock(int recNo, java.lang.String clientId)
          Releases the lock on a record.
 void QueryInterfaceImpl.update(int recNo, java.lang.String[] data, java.lang.String clientId)
          Modifies the fields of a record.
 java.lang.String[] QueryInterface.read(int recNo, java.lang.String clientId)
          Reads a record from the file.
 void QueryInterface.update(int recNo, java.lang.String[] data, java.lang.String clientId)
          Modifies the fields of a record.
 void QueryInterface.delete(int recNo, java.lang.String clientId)
          Deletes a record, making the record number and associated disk storage available for reuse.
 int[] QueryInterface.find(java.lang.String[] criteria, java.lang.String clientId)
          Returns an array of record numbers that match the specified criteria.
 void QueryInterface.lock(int recNo, java.lang.String clientId)
          Locks a record so that it can only be updated or deleted by this client.
 void QueryInterface.unlock(int recNo, java.lang.String clientId)
          Releases the lock on a record.
 boolean QueryInterface.isLocked(int recNo, java.lang.String clientId)
          Determines if a record is currenly locked.
 

Uses of RecordNotFoundException in suncertify.db
 

Methods in suncertify.db that throw RecordNotFoundException
 java.lang.String[] DBMain.read(int recNo)
          Reads a record from the file.
 void DBMain.update(int recNo, java.lang.String[] data)
          Modifies the fields of a record.
 void DBMain.delete(int recNo)
          Deletes a record, making the record number and associated disk storage available for reuse.
 int[] DBMain.find(java.lang.String[] criteria)
          Returns an array of record numbers that match the specified criteria.
 void DBMain.lock(int recNo)
          Locks a record so that it can only be updated or deleted by this client.
 void DBMain.unlock(int recNo)
          Releases the lock on a record.
 boolean DBMain.isLocked(int recNo)
          Determines if a record is currenly locked.
 java.lang.String[] Data.read(int recNo)
          Reads a record from the file.
 void Data.update(int recNo, java.lang.String[] data)
          Modifies the fields of a record.
 void Data.delete(int recNo)
          Deletes a record, making the record number and associated disk storage available for reuse.
 int[] Data.find(java.lang.String[] criteria)
          Returns an array of record numbers that match the specified criteria.
 void Data.lock(int recNo)
          Locks a record so that it can only be updated or deleted by this client.
 void Data.unlock(int recNo)
          Releases the lock on a record.
 boolean Data.isLocked(int recNo)
          Determines if a record is currenly locked.