|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use RDFRDBException | |
com.hp.hpl.jena.db | A general database backend for persistent storage of jena models. |
Uses of RDFRDBException in com.hp.hpl.jena.db |
Methods in com.hp.hpl.jena.db that throw RDFRDBException | |
static ModelRDB |
ModelRDB.open(IDBConnection dbcon)
Open the default model from an existing rdf database. |
static ModelRDB |
ModelRDB.open(IDBConnection dbcon,
java.lang.String name)
Open an existing rdf database. |
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,
java.lang.String name)
Create a new model on an existing database. |
static ModelRDB |
ModelRDB.createModel(IDBConnection dbcon,
java.lang.String name,
Model modelProperties)
Create a new model on an existing database. |
static ModelRDB |
ModelRDB.create(IDBConnection dbcon,
java.lang.String layoutType,
java.lang.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.create(IDBConnection dbcon,
java.lang.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 ExtendedIterator |
ModelRDB.listModels(IDBConnection dbcon)
List the names of all models stored in the database |
void |
ModelRDB.remove()
Remove all traces of this particular Model from the database. |
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(). |
static void |
ModelRDB.deleteModel(IDBConnection dbcon,
java.lang.String name)
Deprecated. Since Jena 2.0, to remove a model use the ModelRDB.remove() |
boolean |
IDBConnection.isFormatOK()
Return true if the database seems to be formated for RDF storage. |
void |
IDBConnection.setDatabaseProperties(Model propertyModel)
Sets database-specific properties. |
Model |
IDBConnection.getDatabaseProperties()
Returns a Jena Model containing database properties. |
Model |
IDBConnection.getDefaultModelProperties()
Retrieve a default set of model customization properties The returned default set of properties is suitable for use in a call to ModelRDB.create(..., modelProperties); |
ExtendedIterator |
IDBConnection.getAllModelNames()
Retrieve a list of all models in the database |
boolean |
IDBConnection.containsModel(java.lang.String name)
Test if a given model is contained in the database. |
boolean |
IDBConnection.containsDefaultModel()
Test if a default model is contained in the database. |
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 |
IDBConnection.getDriver(java.lang.String layout,
java.lang.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. |
void |
DBConnection.setDatabaseProperties(Model dbProperties)
Set the database-specific properties. |
Model |
DBConnection.getDatabaseProperties()
Returns a Jena Model containing database-specific properties. |
Model |
DBConnection.getDefaultModelProperties()
Retrieve a default set of model customization properties. |
ExtendedIterator |
DBConnection.getAllModelNames()
Retrieve a list of all graphs in the database. |
boolean |
DBConnection.containsModel(java.lang.String name)
Test if a given model is contained in the database. |
boolean |
DBConnection.containsDefaultModel()
Test if a default model is contained in the database. |
com.hp.hpl.jena.db.impl.IRDBDriver |
DBConnection.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(java.lang.String layout,
java.lang.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 ModelRDB. There is no longer any need for applications to interact directly with the IRDBDriver. To customize the database configuration/layout use the setDatabaseProperties method. |
Constructors in com.hp.hpl.jena.db that throw RDFRDBException | |
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,
java.lang.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. |
|
ModelRDB(GraphPersonality p,
GraphRDB graph)
A model which is stored persistently in a Relational DataBase Most applications should not need to deal directly with Graphs - use ModelRDB.createModel (to create a new model) or ModelRDB.open (to open an exising model). |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |