|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use IDBConnection | |
---|---|
com.hp.hpl.jena.db | A general database backend for persistent storage of Jena models. |
com.hp.hpl.jena.graph | This package defines the Graph and Node family of classes, which form the underlying datatypes of the Jena system. |
com.hp.hpl.jena.rdf.model | A package for creating and manipulating RDF graphs. |
Uses of IDBConnection in com.hp.hpl.jena.db |
---|
Classes in com.hp.hpl.jena.db that implement IDBConnection | |
---|---|
class |
DBConnection
Encapsulate the specification of a jdbc connection. |
Methods in com.hp.hpl.jena.db that return IDBConnection | |
---|---|
IDBConnection |
GraphRDB.getConnection()
Return the connection |
IDBConnection |
ModelRDB.getConnection()
A convenience function to return the connection |
Methods in com.hp.hpl.jena.db with parameters of type IDBConnection | |
---|---|
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() |
static Model |
ModelRDB.getDefaultModelProperties(IDBConnection dbcon)
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); |
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. |
Constructors in com.hp.hpl.jena.db with parameters of type IDBConnection | |
---|---|
GraphRDB(IDBConnection con,
String graphID,
Graph requestedProperties,
boolean isNew)
Deprecated. Please use the alternate constructor and choose the desired reification behaviour. |
|
GraphRDB(IDBConnection con,
String graphID,
Graph requestedProperties,
int reificationBehaviour,
boolean isNew)
Construct a new GraphRDB |
|
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 IDBConnection in com.hp.hpl.jena.graph |
---|
Methods in com.hp.hpl.jena.graph with parameters of type IDBConnection | |
---|---|
static GraphMaker |
Factory.createRDBGraphFactory(IDBConnection c)
This is unused. |
Uses of IDBConnection in com.hp.hpl.jena.rdf.model |
---|
Methods in com.hp.hpl.jena.rdf.model that return IDBConnection | |
---|---|
static IDBConnection |
ModelFactory.createSimpleRDBConnection()
Answer a plain IDBConnection to a database, with the arguments implicitly supplied by system properties: The database URL - jena.db.url The user - jena.db.user, or fails back to "test" The password - jena.db.password, or fails back to "" The db type - jena.db.type, or guessed from the URL |
static IDBConnection |
ModelFactory.createSimpleRDBConnection(String url,
String user,
String password,
String dbType)
Answer a plain IDBConnection to a database with the given URL, with the given user having the given password. |
Methods in com.hp.hpl.jena.rdf.model with parameters of type IDBConnection | |
---|---|
static ModelMaker |
ModelFactory.createModelRDBMaker(IDBConnection c)
Answer a ModelMaker that accesses database-backed Models on the database at the other end of the connection c with the usual Standard reification style. |
static ModelMaker |
ModelFactory.createModelRDBMaker(IDBConnection c,
ReificationStyle style)
Answer a ModelMaker that accesses database-backed Models on the database at the other end of the connection c with the given reification style. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |