|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use PObjDictionary | |
|---|---|
| de.mguennewig.pobjects | The package de.mguennewig.pobjects provides an abstraction
layer on top of a set of database tables by which table rows can be
accessed transparently as Java objects. |
| de.mguennewig.pobjects.demo | The package de.mguennewig.pobjects.demo prodives a demo
application to show the basic usage of the
de.mguennewig.pobjects package. |
| de.mguennewig.pobjects.jdbc | This package contains Container implementations that
use a JDBC connection. |
| de.mguennewig.pobjects.memdb | This package contains a simple non-persistent Container
implementation that operates only in memory. |
| de.mguennewig.pobjects.optional | The package de.mguennewig.pobjects.optional contains
classes that depend on optional external libraries. |
| de.mguennewig.pobjtool | The package de.mguennewig.pobjtool provides the classes for
a tool named PObjTool which generates Java classes for the
de.mguennewig.pobjects library out of an XML
file. |
| de.mguennewig.pobjtool.ddl | This package contains the DataDefinition
implementations for the different supported DBMS. |
| Uses of PObjDictionary in de.mguennewig.pobjects |
|---|
| Methods in de.mguennewig.pobjects that return PObjDictionary | |
|---|---|
PObjDictionary |
Container.getDictionary()
Returns the used meta data dictionary. |
PObjDictionary |
AbstractContainer.getDictionary()
Returns the used meta data dictionary. |
| Constructors in de.mguennewig.pobjects with parameters of type PObjDictionary | |
|---|---|
AbstractContainer(PObjDictionary dict,
java.lang.String schema)
Creates a container without a connection to any DBMS. |
|
| Uses of PObjDictionary in de.mguennewig.pobjects.demo |
|---|
| Methods in de.mguennewig.pobjects.demo that return PObjDictionary | |
|---|---|
static PObjDictionary |
Globals.getDictionary()
|
| Uses of PObjDictionary in de.mguennewig.pobjects.jdbc |
|---|
| Methods in de.mguennewig.pobjects.jdbc that return PObjDictionary | |
|---|---|
PObjDictionary |
ContainerPool.getDictionary()
Returns the dictionary that every container of this pool is using. |
| Constructors in de.mguennewig.pobjects.jdbc with parameters of type PObjDictionary | |
|---|---|
JdbcContainer(java.sql.Connection conn,
PObjDictionary dict,
java.lang.String schema)
Creates a container with a specified connection to a DBMS. |
|
JdbcContainer(PObjDictionary dict,
java.lang.String schema)
Creates a container without a connection to any DBMS. |
|
JdbcContainer(java.lang.String hostname,
java.lang.Integer port,
java.lang.String database,
java.lang.String username,
java.lang.String password,
PObjDictionary dict,
java.lang.String schema)
Creates a container that opens a connection to the specified database. |
|
JndiContainerPool(PObjDictionary dict,
java.lang.String jndiName)
Creates a new JNDI base container pool. |
|
MySQLContainer(java.sql.Connection conn,
PObjDictionary dict,
java.lang.String schema)
Creates a container with a specified connection to a DBMS, which must denote a MySQL compatible DMBS. |
|
MySQLContainer(PObjDictionary dict,
java.lang.String schema)
Creates a container without a connection to a MySQL DB. |
|
MySQLContainer(java.lang.String hostname,
java.lang.Integer port,
java.lang.String database,
java.lang.String username,
java.lang.String password,
PObjDictionary dict,
java.lang.String schema)
|
|
OracleContainer(java.sql.Connection conn,
PObjDictionary dict,
java.lang.String schema)
Creates a container with a specified connection to a DBMS, which must denote an Oracle compatible DBMS. |
|
OracleContainer(PObjDictionary dict,
java.lang.String schema)
Creates a container without a connection to an Oracle DB. |
|
OracleContainer(java.lang.String hostname,
java.lang.Integer port,
java.lang.String sid,
java.lang.String username,
java.lang.String password,
PObjDictionary dict,
java.lang.String schema)
|
|
PostgreSQLContainer(java.sql.Connection conn,
PObjDictionary dict,
java.lang.String schema)
Creates a container with a specified connection to a DBMS, which must denote a PostgreSQL compatible DBMS. |
|
PostgreSQLContainer(PObjDictionary dict,
java.lang.String schema)
Creates a container without a connection to a PostgresSQL DB. |
|
PostgreSQLContainer(java.lang.String hostname,
java.lang.Integer port,
java.lang.String database,
java.lang.String username,
java.lang.String password,
PObjDictionary dict,
java.lang.String schema)
|
|
SQLiteContainer(java.sql.Connection conn,
PObjDictionary dict,
java.lang.String schema)
Creates a container with a specified connection to a DBMS. |
|
SQLiteContainer(PObjDictionary dict,
java.lang.String schema)
Creates a container without a connection to any DBMS. |
|
SQLiteContainer(java.lang.String hostname,
java.lang.Integer port,
java.lang.String database,
java.lang.String username,
java.lang.String password,
PObjDictionary dict,
java.lang.String schema)
Creates a container that opens a connection to the specified database. |
|
SqlServerContainer(java.sql.Connection conn,
PObjDictionary dict,
java.lang.String schema)
Creates a container with a specified connection to a DBMS, which must denote a MS-SQL Server compatible DBMS. |
|
SqlServerContainer(PObjDictionary dict,
java.lang.String schema)
Creates a container without a connection to a MS-SQL Server. |
|
SqlServerContainer(java.lang.String hostname,
java.lang.Integer port,
java.lang.String database,
java.lang.String username,
java.lang.String password,
PObjDictionary dict,
java.lang.String schema)
|
|
| Uses of PObjDictionary in de.mguennewig.pobjects.memdb |
|---|
| Constructors in de.mguennewig.pobjects.memdb with parameters of type PObjDictionary | |
|---|---|
MemoryContainer(PObjDictionary dict,
java.lang.String schema)
Creates a new MemoryContainer. |
|
| Uses of PObjDictionary in de.mguennewig.pobjects.optional |
|---|
| Constructors in de.mguennewig.pobjects.optional with parameters of type PObjDictionary | |
|---|---|
BasicContainerPool(java.lang.String containerClassName,
java.lang.String hostname,
java.lang.Integer portNumber,
java.lang.String database,
java.lang.String username,
java.lang.String password,
PObjDictionary dict,
java.lang.String schema)
Creates a new BasicContainerPool. |
|
| Uses of PObjDictionary in de.mguennewig.pobjtool |
|---|
| Methods in de.mguennewig.pobjtool that return PObjDictionary | |
|---|---|
PObjDictionary |
DictionaryParser.parseFile(java.io.File file)
Parses the XML file with the specification of a PObjDictionary. |
PObjDictionary |
DictionaryParser.parseFile(java.lang.String filename)
Parses the XML file with the specification of a PObjDictionary. |
| Uses of PObjDictionary in de.mguennewig.pobjtool.ddl |
|---|
| Methods in de.mguennewig.pobjtool.ddl with parameters of type PObjDictionary | |
|---|---|
java.lang.String[] |
NoDataDefinition.create(PObjDictionary dict,
java.lang.String[] moduleNames)
|
java.lang.String[] |
DataDefinition.create(PObjDictionary cd,
java.lang.String[] moduleNames)
|
java.lang.String[] |
NoDataDefinition.drop(PObjDictionary dict,
java.lang.String[] moduleNames)
|
java.lang.String[] |
DataDefinition.drop(PObjDictionary cd,
java.lang.String[] moduleNames)
|
java.lang.String[] |
NoDataDefinition.grants(PObjDictionary dict,
java.lang.String[] moduleNames,
java.lang.String userName)
|
java.lang.String[] |
DataDefinition.grants(PObjDictionary dict,
java.lang.String[] moduleNames,
java.lang.String userName)
|
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||