Extension SDK 9.0.5

Uses of Class
oracle.jdeveloper.cm.ds.db.DBException

Packages that use DBException
oracle.jdeveloper.cm.ds.db Contains a metadata API for describing database objects. 
oracle.jdeveloper.cm.dt.wizard Contains classes related to Wizard implementations used with connection objects. 
 

Uses of DBException in oracle.jdeveloper.cm.ds.db
 

Subclasses of DBException in oracle.jdeveloper.cm.ds.db
 class MissingValidatorException
          Indicates that the validation of the database object failed because no DBObjectValidator was registered to handle the validation.
 class ValidationException
          Indicates that the validation of the database object failed.
 

Methods in oracle.jdeveloper.cm.ds.db that throw DBException
 DBObject TemporaryObjectID.resolveID()
           
 DBObject TemporaryObjectID.resolveOriginalID()
          Get the original object which this temporary one was copied from
 void JdbcTableBuilder.fillInObject(SchemaObject object)
           
 SchemaObject JdbcSynonymBuilder.buildObjectImpl(Schema schema, java.lang.String name)
           
 SchemaObject JdbcRelationBuilder.buildObjectImpl(Schema schema, java.lang.String name)
           
protected  void JdbcRelationBuilder.fillInObject(SchemaObject object)
           
 java.lang.String[] DMDBuilder.listObjects(Schema schema, java.lang.String ref)
          Lists the names of the objects that can be provided by this builder.
 SchemaObject DMDBuilder.buildObject(DBObjectID id)
           
 SchemaObject DMDBuilder.buildObject(Schema schema, java.lang.String name)
           
protected abstract  SchemaObject DMDBuilder.buildObjectImpl(Schema schema, java.lang.String name)
           
protected  void DMDBuilder.fillInObject(SchemaObject object)
           
 DBObject ConstraintID.resolveID()
           
 java.lang.String[] AbstractDBObjectBuilder.listObjects(Schema schema, java.lang.String ref)
           
 SchemaObject AbstractDBObjectBuilder.buildObject(Schema schema, java.lang.String name)
           
 SchemaObject AbstractDBObjectBuilder.buildObject(DBObjectID id)
           
 java.lang.Long AbstractDBObjectBuilder.getTimestamp(Schema schema, java.lang.String name)
           
 java.lang.String[] DBObjectBuilder.listObjects(Schema schema, java.lang.String ref)
          Lists the names of the objects that can be provided by this builder.
 SchemaObject DBObjectBuilder.buildObject(Schema schema, java.lang.String name)
          Builds a new SchemaObject instance.
 SchemaObject DBObjectBuilder.buildObject(DBObjectID id)
          Builds a new SchemaObject instance, using the specified ID.
 java.lang.Long DBObjectBuilder.getTimestamp(Schema schema, java.lang.String name)
          Retrieves the the timestamp for this object.
 DBObject DBObjectID.resolveID()
          Resolves the id into the object referenced.
protected  java.lang.String[] AbstractDBObjectProvider.listObjectsImpl(java.lang.String type, Schema schema, java.lang.String ref)
          Retrieves the list of objects by using a registered builder.
 java.lang.String[] AbstractDBObjectProvider.listObjects(java.lang.String objectType, Schema schema)
           
 java.lang.String[] AbstractDBObjectProvider.listObjects(java.lang.String objectType, Schema schema, java.lang.String ref)
           
 SchemaObject AbstractDBObjectProvider.getObject(java.lang.String objectType, Schema schema, java.lang.String name)
           
 java.lang.String AbstractDBObjectProvider.quoteIdentifier(java.lang.String name, boolean force)
           
protected  DBObject AbstractDBObjectProvider.findByID(DBObjectID id)
           
abstract  void AbstractDBObjectProvider.createObject(SchemaObject object, boolean replace)
           
abstract  void AbstractDBObjectProvider.createObjects(SchemaObject[] objects, boolean replace)
           
abstract  void AbstractDBObjectProvider.deleteObject(SchemaObject object, boolean cascade)
           
abstract  void AbstractDBObjectProvider.deleteObjects(SchemaObject[] objects, boolean cascade)
           
abstract  void AbstractDBObjectProvider.updateObject(SchemaObject oldObject, SchemaObject newObject)
           
abstract  void AbstractDBObjectProvider.updateObjects(SchemaObject[] oldObjects, SchemaObject[] newObjects)
           
abstract  Schema[] AbstractDBObjectProvider.listSchemas()
           
abstract  Schema AbstractDBObjectProvider.getSchema(java.lang.String name)
           
abstract  void AbstractDBObjectProvider.createSchema(Schema schema, boolean replace)
           
abstract  void AbstractDBObjectProvider.deleteSchema(Schema schema, boolean cascade)
           
abstract  void AbstractDBObjectProvider.updateSchema(Schema oldOSchema, Schema newSchema)
           
 void AbstractDatabase.createObjects(SchemaObject[] objects, boolean replace)
          Default implementation of this method simply iterates through the objects calling createObject on each.
 void AbstractDatabase.deleteObjects(SchemaObject[] objects, boolean cascade)
          Default implementation of this method simply iterates through the objects calling createObject on each.
 void AbstractDatabase.updateObjects(SchemaObject[] oldObjects, SchemaObject[] newObjects)
          Default implementation of this method simply iterates through the objects calling createObject on each.
 java.lang.String AbstractDatabase.getDatabaseSource(java.lang.String objectType, Schema schema, java.lang.String objectName)
           
 java.lang.String JdbcDatabase.getUserName()
           
 void JdbcDatabase.createObject(SchemaObject object, boolean replace)
           
 void JdbcDatabase.deleteObject(SchemaObject object, boolean cascade)
           
 void JdbcDatabase.updateObject(SchemaObject oldObject, SchemaObject newObject)
           
 Schema JdbcDatabase.getSchema(java.lang.String name)
           
 Schema[] JdbcDatabase.listSchemas()
           
 void JdbcDatabase.createSchema(Schema schema, boolean replace)
           
 void JdbcDatabase.deleteSchema(Schema schema, boolean cascade)
           
 void JdbcDatabase.updateSchema(Schema oldSchema, Schema newSchema)
           
 void DBObjectProvider.createObject(SchemaObject object, boolean replace)
          Causes the creation of the object described by the specified meta data.
 void DBObjectProvider.createObjects(SchemaObject[] objects, boolean replace)
          Causes the creation of the objects described by the specified meta data.
 void DBObjectProvider.deleteObject(SchemaObject object, boolean cascade)
          Deletes the object.
 void DBObjectProvider.deleteObjects(SchemaObject[] objects, boolean cascade)
          Deletes the objects.
 java.lang.String DBObjectProvider.quoteIdentifier(java.lang.String name, boolean force)
          Quotes the specified identifier name, if needed.
 SchemaObject DBObjectProvider.getObject(java.lang.String objectType, Schema schema, java.lang.String name)
          Retrieves the SchemaObject representing a specific database object.
 void DBObjectProvider.updateObject(SchemaObject oldObject, SchemaObject newObject)
          Updates the definition of an object.
 void DBObjectProvider.updateObjects(SchemaObject[] oldObjects, SchemaObject[] newObjects)
          Updates the definition of a set of objects.
 java.lang.String[] DBObjectProvider.listObjects(java.lang.String objectType, Schema schema)
          Lists the objects of a given type available from this provider.
 java.lang.String[] DBObjectProvider.listObjects(java.lang.String objectType, Schema schema, java.lang.String ref)
          Lists the objects of a given type available from this provider.
 Schema[] DBObjectProvider.listSchemas()
          Retrieves the list of schemas available from this provider.
 Schema DBObjectProvider.getSchema(java.lang.String name)
          Retrieves the Schema object associated with a specific name.
 void DBObjectProvider.createSchema(Schema schema, boolean replace)
          Causes the creation of a new Schema in the persistent storage.
 void DBObjectProvider.updateSchema(Schema oldSchema, Schema newSchema)
          Updates the definition of a Schema.
 void DBObjectProvider.deleteSchema(Schema schema, boolean cascade)
          Deletes the schema.
 java.lang.String Database.getUserName()
          Retrieves the username used to connect to the database
 java.lang.String Database.getDatabaseSource(java.lang.String objectType, Schema schema, java.lang.String objectName)
          Retrieves the source for an object in the database.
 

Uses of DBException in oracle.jdeveloper.cm.dt.wizard
 

Methods in oracle.jdeveloper.cm.dt.wizard that throw DBException
static Schema DBWizardLauncher.determineSchema(Context ctx, Database db)
           
 


Extension SDK

 

Copyright © 1997, 2004, Oracle. All rights reserved.