|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RDFRDBException | |
---|---|
com.hp.hpl.jena.db | A general database backend for persistent storage of Jena models. |
com.hp.hpl.jena.shared | This package defines some classes common to the Jena API and SPI levels, in particular the JenaException class from which all Jena-specific exceptions hang, and the interface PrefixMapping for translation to and from QNames. |
Uses of RDFRDBException in com.hp.hpl.jena.db |
---|
Methods in com.hp.hpl.jena.db that throw RDFRDBException | |
---|---|
void |
ModelRDB.clear()
Deprecated. Since Jena 2.0 this call is not recommended (it's name is misleading) - to clear an entire database use DBConnection.cleanDB, to remove just this Model use Model.remove(). |
boolean |
IDBConnection.containsDefaultModel()
Test if a default model is contained in the database. |
boolean |
DBConnection.containsDefaultModel()
|
boolean |
IDBConnection.containsModel(String name)
Test if a given model is contained in the database. |
boolean |
DBConnection.containsModel(String name)
|
static ModelRDB |
ModelRDB.create(IDBConnection dbcon,
String databaseType)
Deprecated. Since Jena 2.0 this call is no longer needed - it is preferable to specify the database type when constructing the DBConnection. Then use the call ModelRDB.createModel(IDBConnection) |
static ModelRDB |
ModelRDB.create(IDBConnection dbcon,
String layoutType,
String databaseType)
Deprecated. Since Jena 2.0 this call is no longer needed - it is preferable to specify the database type when constructing the DBConnection and to modify the layout by using the properties in the DBConnection. Then use the call ModelRDB.createModel(IDBConnection) |
static ModelRDB |
ModelRDB.createModel(IDBConnection dbcon)
Create a new default model on an existing database. |
static ModelRDB |
ModelRDB.createModel(IDBConnection dbcon,
Model modelProperties)
Create a new model on an existing database. |
static ModelRDB |
ModelRDB.createModel(IDBConnection dbcon,
String name)
Create a new model on an existing database. |
static ModelRDB |
ModelRDB.createModel(IDBConnection dbcon,
String name,
Model modelProperties)
Create a new model on an existing database. |
static void |
ModelRDB.deleteModel(IDBConnection dbcon,
String name)
Deprecated. Since Jena 2.0, to remove a model use the ModelRDB.remove() |
ExtendedIterator |
IDBConnection.getAllModelNames()
Retrieve a list of all models in the database |
ExtendedIterator |
DBConnection.getAllModelNames()
|
Model |
IDBConnection.getDatabaseProperties()
Returns a Jena Model containing database properties. |
Model |
DBConnection.getDatabaseProperties()
|
Model |
IDBConnection.getDefaultModelProperties()
Retrieve a default set of model customization properties. |
Model |
DBConnection.getDefaultModelProperties()
|
com.hp.hpl.jena.db.impl.IRDBDriver |
IDBConnection.getDriver()
Get the database-specific driver For this to work, it needs to know the type of database being used. |
com.hp.hpl.jena.db.impl.IRDBDriver |
DBConnection.getDriver()
|
com.hp.hpl.jena.db.impl.IRDBDriver |
IDBConnection.getDriver(String layout,
String database)
Deprecated. As of Jena 2.0 this call should not be used. Instead specify the database type when constructing a DBConnection and then pass that connection to the GraphRDB. There is no longer any need for applications to interact with the IRDBDriver. To customize the database configuration/layout use the formatDB(propertyModel) call. |
com.hp.hpl.jena.db.impl.IRDBDriver |
DBConnection.getDriver(String layout,
String database)
Deprecated. As of Jena 2.0 this call should not be used. Instead specify the database type when constructing a DBConnection and then pass that connection to the GraphRDB. There is no longer any need for applications to interact with the IRDBDriver. To customize the database configuration/layout use the formatDB(propertyModel) call. |
boolean |
IDBConnection.isFormatOK()
Return true if the database seems to be formated for RDF storage. |
static ExtendedIterator |
ModelRDB.listModels(IDBConnection dbcon)
List the names of all models stored in the database |
static ModelRDB |
ModelRDB.open(IDBConnection dbcon)
Open the default model from an existing rdf database. |
static ModelRDB |
ModelRDB.open(IDBConnection dbcon,
String name)
Open an existing rdf database. |
void |
ModelRDB.remove()
Remove all traces of this particular Model from the database. |
void |
IDBConnection.setDatabaseProperties(Model propertyModel)
Sets database-specific properties. |
void |
DBConnection.setDatabaseProperties(Model dbProperties)
|
Constructors in com.hp.hpl.jena.db that throw RDFRDBException | |
---|---|
ModelRDB(GraphPersonality p,
GraphRDB graph)
A model which is stored persistently in a Relational DataBase Most applications should not call the constructor - use ModelRDB.createModel (to create a new model) or ModelRDB.open (to open an exising model). |
|
ModelRDB(IDBConnection dbcon)
Deprecated. Since Jena 2.0, this call is not recommended - in the short-term use ModelRDB.open or ModelRDB.createModel; in the longer-term use factory methods to construct persistent models. |
|
ModelRDB(IDBConnection dbcon,
String modelID)
Deprecated. Since Jena 2.0, this call is not recommended - in the short-term use ModelRDB.open or ModelRDB.createModel; in the longer-term use factory methods to construct persistent models. |
Uses of RDFRDBException in com.hp.hpl.jena.shared |
---|
Subclasses of RDFRDBException in com.hp.hpl.jena.shared | |
---|---|
class |
AlreadyExistsException
Exception to throw when an attempt is made to create a named object (eg persistent model) when an object of that name already exists. |
class |
DoesNotExistException
Exception thrown when an attempt is made find an entity by name, but it cannot be located. |
class |
RulesetNotFoundException
RulesetNotFoundException - exception to throw when a Ruleset is not found (eg when handing reasoner specifications) |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |