| 
Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference 11g Release 1 (11.1.1.1.0) E13403-02  | 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectoracle.javatools.db.AbstractDBObjectProvider
oracle.javatools.db.AbstractDatabase
public abstract class AbstractDatabase
Base implementation of the Database interface.
 AbstractDatabase can be subclassed to provide support for specific
 types of databases.
 
JdbcDatabase, 
BaseOracleDatabase| Field Summary | |
|---|---|
static java.lang.String | 
SQLSTATE_NOT_IMPLEMENTED
 | 
| Fields inherited from class oracle.javatools.db.AbstractDBObjectProvider | 
|---|
CASE_SENSITIVE_NAME_POLICY, EMPTY_LIST, LOWER_CASE_NAME_POLICY, MIXED_CASE_NAME_POLICY, TIMESTAMP_PROPERTY, UPPER_CASE_NAME_POLICY | 
| Fields inherited from interface oracle.javatools.db.Database | 
|---|
FOUR_GIG, GENERIC_JDBC_DATABASE, SOURCE_TYPE_BODY, SOURCE_TYPE_SPEC, TWO_GIG | 
| Fields inherited from interface oracle.javatools.db.DBObjectProvider | 
|---|
CREATE_PRIVILEDGE, DELETE_PRIVILEDGE, MODIFY_PRIVILEDGE, NEW_FROM_TEMPLATE_TYPE | 
| Constructor Summary | |
|---|---|
protected  | 
AbstractDatabase(java.lang.String connStore,
                 java.lang.String connName,
                 java.sql.Connection conn)
Constructs a new AbstractDatabase.  | 
| Method Summary | |
|---|---|
 void | 
cancelStatement()
Cancels the Statement currently executing against this Database if: such a statement has been recorded by the use of a StatementWrapper/QueryWrapper
  both the DBMS and driver support aborting an SQL statement
  | 
 boolean | 
canRestrictSchemaList()
Whether this provider supports restricting the list of schemas to those with visible objects.  | 
 void | 
close()
Closes the Database Connection (and the supplied JDBC Connection).  | 
protected  SchemaObject | 
createByIDImpl(DBObjectID id)
 | 
protected  Schema | 
createSchema(java.lang.String name)
 | 
protected  boolean | 
exists(SchemaObject obj)
Whether the specified object exists.  | 
 boolean | 
exists(java.lang.String type,
       java.lang.String schema,
       java.lang.String name)
Checks for existance of a schema object named objectName. | 
protected  void | 
finishCreate(SchemaObject[] objects,
             SchemaObject[] oldObjects)
Use to finish the create or update of objects after the changes have been made in the db.  | 
protected  void | 
finishDelete(SchemaObject[] objs)
Use to finish the delete of the given objects after the operation has been performed against the db.  | 
protected  void | 
finishDelete(Schema schema,
             SchemaObject[] objs)
Use to finish the delete of the given objects after the operation has been performed against the db.  | 
protected  java.lang.String | 
getAliveTestStatement()
Returns a statement that, if executed succesfully, tests whether the given connections is live.  | 
 java.sql.Connection | 
getConnection()
Gets the JDBC connection associated with this database.  | 
 java.sql.Connection | 
getConnection(boolean reconnect)
Gets the JDBC connection associated with this database.  | 
 java.lang.String | 
getConnectionName()
Retrieves the name for the Connection associated with this Database in whichever connection store it is stored in.  | 
 java.lang.String | 
getConnectionStore()
Retrieves the connection store the Connection associated with this Database is stored in.  | 
protected  SchemaObject | 
getCreatedObject(java.lang.String type,
                 Schema schema,
                 java.lang.String name)
Used by finishCreate() to get the object that's just been created back from the database so that it can be verified before returning to the user.  | 
 java.lang.String | 
getDatabaseSource(java.lang.String objectType,
                  Schema schema,
                  java.lang.String objectName)
Retrieves the source for an object in the database.  | 
 java.lang.String | 
getDatabaseSource(java.lang.String objectType,
                  Schema schema,
                  java.lang.String objectName,
                  java.lang.String sourceType)
Retrieves the source for an object in the database.  | 
 DDLGenerator | 
getDDLGenerator()
Deprecated. - pushed down to DDLDatabase | 
 Schema | 
getDefaultSchema()
Returns the default schema for the connection or null if there isn't one.  | 
 DatabaseDescriptor | 
getDescriptor()
Returns the DatabaseDescriptor for this provider  | 
 java.lang.String | 
getName()
Returns an identifier for this provider.  | 
protected  SchemaObject | 
getObjectImpl(java.lang.String objectType,
              Schema schema,
              java.lang.String name)
 | 
 java.lang.String | 
getQualifiedName()
Retrieves a qualified name containing the connection store and connection name.  | 
protected  java.lang.String | 
getTransactionTestQuery()
 | 
 boolean | 
hasTransaction()
Tests whether there is currently a "transaction" open on the underlying java.sql.Connection.  | 
 boolean | 
isConnectionAlive()
Tests whether the connection underneath this Database is "alive" - i.e.  | 
protected  boolean | 
isConnectionAlive(java.sql.Connection conn)
Implementation that checks whether the given (current) connection is alive.  | 
 boolean | 
isObjectValid(java.lang.String objectType,
              java.lang.String schema,
              java.lang.String objectName)
Determines whether the specified database object is in a valid state.  | 
protected  boolean | 
isUsernameCaseInsensitive()
Returns true if the username is treated as case insensitive.  | 
 Schema[] | 
listSchemas(boolean showAll)
Base implementation doesn't restrict the users.  | 
protected  void | 
reconnect()
 | 
protected  void | 
reconnected(java.sql.Connection c)
Called when a reconnect happens to (re)initialise any member appropriately on the new Connection.  | 
protected abstract  void | 
registerBuilders()
Called to request that the DBOBjectBuilders be registered.  | 
protected  void | 
registerValidators()
By default this registers default validators for Schema, Sequences, Synonyms, Indexes, Constraints and Columns for the wizards to use.  | 
protected  void | 
sqlTrace(java.lang.String query)
Deprecated. - Tracing is done automatically by the QueryWrapper implementations. DDL tracing is done automatically for implementations of DDLDatabase.  | 
protected  void | 
sqlTrace(java.lang.String query,
         java.lang.Object[] params)
Deprecated. - Tracing is done automatically by the QueryWrapper implementations. DDL tracing is done automatically for implementations of DDLDatabase.  | 
 boolean | 
supportsDebugging()
Whether this database instance supports JDWP debugging.  | 
| Methods inherited from class java.lang.Object | 
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
| Methods inherited from interface oracle.javatools.db.Database | 
|---|
getDatabaseType, getIdentifierQuoteString, getUserName | 
| Field Detail | 
|---|
public static final java.lang.String SQLSTATE_NOT_IMPLEMENTED
| Constructor Detail | 
|---|
protected AbstractDatabase(java.lang.String connStore,
                           java.lang.String connName,
                           java.sql.Connection conn)
connName - a String containing the ConnectionManager name for the
        connection associated with this Databaseconn - the Connection used by this AbstractDatabase| Method Detail | 
|---|
@Deprecated protected void sqlTrace(java.lang.String query)
@Deprecated
protected void sqlTrace(java.lang.String query,
                                   java.lang.Object[] params)
protected void registerValidators()
@Deprecated public DDLGenerator getDDLGenerator()
DDLDatabase
protected boolean exists(SchemaObject obj)
obj - The object being checked
protected abstract void registerBuilders()
public final java.sql.Connection getConnection()
Database
getConnection in interface DatabaseDatabase.getConnection(boolean)
public final java.sql.Connection getConnection(boolean reconnect)
                                        throws DBException
DatabaseDatabase.isConnectionAlive().
getConnection in interface Databasereconnect - whether to try and reconnect to the db
DBException - wrapping a SQLException if there is a problem
 reconnectingpublic final boolean isConnectionAlive()
DatabaseNote the implementation of this is database specific - a positive can be assumed true but a negative could be incorrect.
isConnectionAlive in interface DatabaseDatabase.getConnection(boolean)protected boolean isConnectionAlive(java.sql.Connection conn)
getConnection() or similar, and
 only check the passed Connection object.
conn - the connection to check (will not be null).
protected java.lang.String getAliveTestStatement()
Statement.execute(java.lang.String) to be a valid test (e.g. SELECT 1 FROM DUAL for
 Oracle).
public boolean hasTransaction()
DatabaseNote the implementation of this is database specific - a positive can be assumed true but a negative could be incorrect.
hasTransaction in interface Databaseprotected java.lang.String getTransactionTestQuery()
public final java.lang.String getName()
AbstractDBObjectProvider
getName in class AbstractDBObjectProviderpublic final java.lang.String getConnectionName()
Database
getConnectionName in interface DatabaseDatabase.getConnectionStore(), 
Database.getQualifiedName()public final java.lang.String getConnectionStore()
Database
getConnectionStore in interface DatabaseDatabase.getQualifiedName()public final java.lang.String getQualifiedName()
DatabaseIf this connection has no connection store associated with it, this method will simply return the encoded connection name.
getQualifiedName in interface DatabaseDatabase.getConnectionStore(), 
Database.getConnectionName()
protected void reconnect()
                  throws DBException
DBExceptionprotected void reconnected(java.sql.Connection c)
c - the connection to initialise onpublic void close()
Database
close in interface Database
public boolean exists(java.lang.String type,
                      java.lang.String schema,
                      java.lang.String name)
DatabaseobjectName.
exists in interface Databasename - The name of the schema object.
true if the object exists, false
         otherwise.
public boolean isObjectValid(java.lang.String objectType,
                             java.lang.String schema,
                             java.lang.String objectName)
Database
isObjectValid in interface DatabaseobjectType - the type of the object.schema - the name of the schema containing the objectobjectName - the name of the objectprotected final Schema createSchema(java.lang.String name)
protected void finishCreate(SchemaObject[] objects,
                            SchemaObject[] oldObjects)
                     throws DBException
DBException
protected SchemaObject getCreatedObject(java.lang.String type,
                                        Schema schema,
                                        java.lang.String name)
                                 throws DBException
getObject(type, name, schema).
DBExceptionfinishCreate(oracle.javatools.db.SchemaObject[], oracle.javatools.db.SchemaObject[])protected void finishDelete(SchemaObject[] objs)
finishDelete  for
 each schema that the given objects are owned by.
finishDelete(Schema,SchemaObject[])
protected void finishDelete(Schema schema,
                            SchemaObject[] objs)
protected SchemaObject createByIDImpl(DBObjectID id)
                               throws DBException
createByIDImpl in class AbstractDBObjectProviderDBException
public java.lang.String getDatabaseSource(java.lang.String objectType,
                                          Schema schema,
                                          java.lang.String objectName)
                                   throws DBException
Databasenull.
getDatabaseSource in interface DatabaseobjectType - The type of object for which the source is neededschema - The Schema containing the objectobjectName - The name of the object
DBException - if an error occurs fetching the source
public java.lang.String getDatabaseSource(java.lang.String objectType,
                                          Schema schema,
                                          java.lang.String objectName,
                                          java.lang.String sourceType)
                                   throws DBException
Databasenull. This method combines spec and
 body for those source types that support both.
getDatabaseSource in interface DatabaseobjectType - The type of object for which the source is neededschema - The Schema containing the objectobjectName - The name of the objectsourceType - In the case of types that have more than one source,
 the type of source required. Can be Database.SOURCE_TYPE_SPEC or
 Database.SOURCE_TYPE_BODY. If null, the default of body is selected.
DBException - if an error occurs fetching the source
public Schema getDefaultSchema()
                        throws DBException
getDefaultSchema in interface DBObjectProviderDBExceptionprotected boolean isUsernameCaseInsensitive()
public boolean supportsDebugging()
Databasefalse.
supportsDebugging in interface Databasetrue if JDWP debugging is supported against this
 database, false otherwise
protected SchemaObject getObjectImpl(java.lang.String objectType,
                                     Schema schema,
                                     java.lang.String name)
                              throws DBException
getObjectImpl in class AbstractDBObjectProviderDBExceptionpublic DatabaseDescriptor getDescriptor()
DBObjectProvider
getDescriptor in interface DBObjectProvider
public Schema[] listSchemas(boolean showAll)
                     throws DBException
listSchemas in interface DBObjectProvidershowAll - if false, only schemas containing objects belonging
 to (or visible to) the user are returned
DBException - if an error is encountered listing the schemas.public boolean canRestrictSchemaList()
Database
canRestrictSchemaList in interface Databasepublic void cancelStatement()
StatementWrapper/QueryWrapper
  | 
Oracle Fusion Middleware Java API Reference for Oracle Extension SDK Reference 11g Release 1 (11.1.1.1.0) E13403-02  | 
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||