Uses of Interface
com.hp.hpl.jena.db.IDBConnection

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 ModelRDB.getConnection()
          A convenience function to return the connection
 IDBConnection GraphRDB.getConnection()
          Return the connection
 

Methods in com.hp.hpl.jena.db with parameters of type IDBConnection
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 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 void ModelRDB.deleteModel(IDBConnection dbcon, java.lang.String name)
          Deprecated. Since Jena 2.0, to remove a model use the ModelRDB.remove()
 

Constructors in com.hp.hpl.jena.db with parameters of type IDBConnection
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.
GraphRDB(IDBConnection con, java.lang.String graphID, Graph requestedProperties, boolean isNew)
          Deprecated. Please use the alernate constructor and explicely choose the desired reification behaviour.
GraphRDB(IDBConnection con, java.lang.String graphID, Graph requestedProperties, int reificationBehaviour, boolean isNew)
          Construct a new GraphRDB
 

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)
           
 

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(java.lang.String url, java.lang.String user, java.lang.String password, java.lang.String dbType)
          Answer a plain IDBConnection to a database with the given URL, with the given user having the given password.
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
 

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, Reifier.Style 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.
 



Copyright © 2001-2003 Hewlett-Packard. All Rights Reserved.