Uses of Class
javatools.database.Database

Packages that use Database
javatools.administrative   
javatools.database   
javatools.datatypes   
 

Uses of Database in javatools.administrative
 

Methods in javatools.administrative that return Database
 Database NonsharedParameters.getDatabase()
          Returns the database defined in this ini-file
static Database Parameters.getDatabase()
          Returns the database defined in this ini-file
 

Uses of Database in javatools.database
 

Subclasses of Database in javatools.database
 class DummyDatabase
          This class is part of the Java Tools (see http://mpii.de/yago-naga/javatools).
 class MySQLDatabase
          This class is part of the Java Tools (see http://mpii.de/yago-naga/javatools).
 class OracleDatabase
          This class is part of the Java Tools (see http://mpii.de/yago-naga/javatools).
 class PostgresDatabase
          This class is part of the Java Tools (see http://mpii.de/yago-naga/javatools).
 

Methods in javatools.database that return Database
 Database DBWordNet.getDatabase()
          Returns the database
 

Methods in javatools.database with parameters of type Database
static void DBWordNet.construct(Database db, java.io.File wordNetFolder)
          Fills the database with WordNet data
 void DBWordNet.Table.load(Database db, java.io.File wordNetFolder)
          Loads this table to a given database from a folder with the Prolog version of WordNet
 

Constructors in javatools.database with parameters of type Database
DBWordNet(Database db)
          Constructs a new DBWordNet, basing on a filled database
 

Uses of Database in javatools.datatypes
 

Methods in javatools.datatypes with parameters of type Database
static java.lang.String StringModifier.implodeForDB(java.util.Collection<?> col, java.lang.String delim, Database database)
           
static java.lang.String StringModifier.implodeForDB(java.util.Iterator<?> it, java.lang.String delim, Database database)
           
static
<T,K> java.lang.String
StringModifier.implodeForDB(java.util.Iterator<java.util.Map.Entry<T,K>> it, java.lang.String keyValueDelim, java.lang.String pairDelim, Database database, boolean formatKey, boolean formatValue)
          Concatenates key value pairs of a Map.Entry iterator into a combined String, separating each key from its value by a key-value delimeter and each key-value pair by pair delimeter while optionally applying the database.format function to each key/value
static java.lang.String StringModifier.implodeForDB(java.util.Map<?,?> map, java.lang.String keyValueDelim, java.lang.String pairDelim, Database database, boolean formatKey, boolean formatValue)
          Concatenates key value pairs of a Map into a combined String, separating each key from its value by a key-value delimeter and each key-value pair by pair delimeter while optionally applying the database.format function to each key/value
static
<T> java.lang.String
StringModifier.implodeForDB(T[] col, java.lang.String delim, Database database)
           
static java.lang.String StringModifier.implodeForDBAsConditions(java.util.Map<?,?> map, Database database)
          Concatenates key value pairs of a Map into a combined String representing the pairs as independent column conditions for a database query, applying the database.format function to each value