Uses of Class
fipaos.skill.db.DatabaseException

Packages that use DatabaseException
fipaos.skill.db 
fipaos.skill.db.memorydatabase 
fipaos.skill.db.serializationdatabase 

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
 

Uses of DatabaseException in fipaos.skill.db.memorydatabase
 

Methods in fipaos.skill.db.memorydatabase that throw DatabaseException
voidMemoryDatabase.addObject(DatabaseObject obj)
          Method to add the given DatabaseObject to the database, in the given relation.
DatabaseObjectMemoryDatabase.findObject(String unique_id)
          Method to locate the object in the given relation with the given UID
EnumerationMemoryDatabase.getIDs()
          Method to return an enumeration of the keys in the database
voidMemoryDatabase.removeObject(DatabaseObject obj)
          Method to remove the given DatabaseObject from the Database
voidMemoryDatabase.removeObject(String unique_id)
          Method to remove the DatabaseObject from the Database with the given UID
voidMemoryDatabase.updateObject(DatabaseObject obj)
          Method to update the given DatabaseObject in the Database
 

Uses of DatabaseException in fipaos.skill.db.serializationdatabase
 

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