Package org.apache.derby.catalog

Examples of org.apache.derby.catalog.Dependable


    @exception StandardException thrown on error
  */
  public final Dependable getDependable(DataDictionary dd, UUID dependableObjectID)
    throws StandardException
  {
        Dependable dependable = findDependable(dd, dependableObjectID);
        if (dependable == null)
            throw StandardException.newException(SQLState.LANG_OBJECT_NOT_FOUND,
                    getSQLObjectType(), dependableObjectID);
        return dependable;
    }
View Full Code Here


    @exception StandardException thrown on error
  */
  public final Dependable getDependable(DataDictionary dd, UUID dependableObjectID)
    throws StandardException
  {
        Dependable dependable = findDependable(dd, dependableObjectID);
        if (dependable == null)
            throw StandardException.newException(SQLState.LANG_OBJECT_NOT_FOUND,
                    getSQLObjectType(), dependableObjectID);
        return dependable;
    }
View Full Code Here

    throws StandardException
  {
    UUID        id = (UUID) uuids.elementAt( index );
    DependableFinder  df = (DependableFinder) dependableFinders.elementAt( index );

    Dependable      dependable;
    try {
      dependable = df.getDependable( id );
    } catch (java.sql.SQLException te) {
      throw StandardException.newException(SQLState.DEP_UNABLE_TO_RESTORE, df.getClass().getName(), te.getMessage());
    }
View Full Code Here

    @exception StandardException thrown on error
  */
  public final Dependable getDependable(DataDictionary dd, UUID dependableObjectID)
    throws StandardException
  {
        Dependable dependable = findDependable(dd, dependableObjectID);
        if (dependable == null)
            throw StandardException.newException(SQLState.LANG_OBJECT_NOT_FOUND,
                    getSQLObjectType(), dependableObjectID);
        return dependable;
    }
View Full Code Here

    @exception StandardException thrown on error
  */
  public final Dependable getDependable(DataDictionary dd, UUID dependableObjectID)
    throws StandardException
  {
        Dependable dependable = findDependable(dd, dependableObjectID);
        if (dependable == null)
            throw StandardException.newException(SQLState.LANG_OBJECT_NOT_FOUND,
                    getSQLObjectType(), dependableObjectID);
        return dependable;
    }
View Full Code Here

TOP

Related Classes of org.apache.derby.catalog.Dependable

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.