Uses of Class
fipaos.skill.db.DatabaseException

Packages that use DatabaseException
fipaos.skill.db 

Uses of DatabaseException in fipaos.skill.db
 

Methods in fipaos.skill.db that throw DatabaseException
voidDatabase.addObject(DatabaseObject obj)
          Method to add the given DatabaseObject to the database, in the given relation.
voidDatabase.closeDatabase()
          Method to close the database store.
voidDatabase.createDatabase()
          Method to create the database store.
voidDatabase.createRelation(String relation)
          Creates the given relation within the Database
voidDatabase.deleteDatabase()
          Method to remove the database store.
voidDatabase.deleteRelation(String relation)
          Deletes the given relation from the Database
voidDatabase.endTransaction()
          Indicates that a transaction has finished.
DatabaseObjectDatabase.findObject(String unique_id)
          Method to locate the object in the given relation with the given UID
EnumerationDatabase.getIDs()
          Method to return an enumeration of the keys in the database
voidDatabase.openDatabase()
          Method to re-open the database store.
voidDatabase.removeObject(DatabaseObject obj)
          Method to remove the given DatabaseObject from the Database
voidDatabase.removeObject(String unique_id)
          Method to remove the DatabaseObject from the Database with the given UID
voidDatabase.startTransaction(boolean readonly)
          Indicates that a transaction is about to start.
voidDatabase.updateObject(DatabaseObject obj)
          Method to update the given DatabaseObject in the Database