Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
org.vrspace.server.DB

Uses of DB in org.vrspace.server
 

Fields in org.vrspace.server declared as DB
protected  DB Server.db
           
protected  DB Dispatcher.space
           
protected  DB DBObject.db
           
 

Methods in org.vrspace.server that return DB
 DB Dispatcher.getDB(Client c)
          Returns the reference to the database.
 

Methods in org.vrspace.server with parameters of type DB
 void DBObject.put(DB db)
          Stores (insert/update) the object into database db
 java.lang.Object DBObject.get(DB db, long id)
          Fetches the object having db_id = id from the database db
 void DBObject.delete(DB db)
          Deletes itself from the database.
 

Constructors in org.vrspace.server with parameters of type DB
Dispatcher(Server s, DB db)
          Constructs new Dispatcher for Server s and database db
DBObject(DB db)
          This constructor implies autocommit, that is, sendEvent will immediately store changed object into the database.