Sophie

Sophie

distrib > Mageia > 4 > x86_64 > by-pkgid > f800694edefe91adea2624f711a41a2d > files > 10737

php-manual-en-5.5.7-1.mga4.noarch.rpm

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  <title>SDO Functions</title>

 </head>
 <body><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="sdo.sample.reflection.html">Reflecting on Service Data Objects</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="sdo-das-changesummary.beginlogging.html">SDO_DAS_ChangeSummary::beginLogging</a></div>
 <div class="up"><a href="book.sdo.html">SDO</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div><hr /><div id="ref.sdo" class="reference">
 <h1 class="title">SDO Functions</h1>

 <div class="partintro">
  <div class="section" id="sdo.das.table">
   <h2 class="title">Data Access Services</h2>
   <p class="para">
    The table below lists the currently provided SDO Data Access Services:
    <table class="doctable informaltable">
     
      <thead>
       <tr>
        <th>DAS Name</th>
        <th>Description</th>
       </tr>

      </thead>

      <tbody class="tbody">
       <tr>
        <td>
         <a href="ref.sdo-das-xml.html" class="link">SDO_DAS_XML</a>
        </td>
        <td>
         An XML Data Access Service supporting reading/writing
         SDOs as XML documents.
        </td>
       </tr>

       <tr>
        <td>
         <a href="ref.sdodasrel.html" class="link">SDO_DAS_Relational</a>
        </td>
        <td>
         A PDO-based Data Access Service supporting reading/writing SDO 
         to relational databases.  
         Implements an optimistic concurrency policy for updates.
        </td>
       </tr>

      </tbody>
     
    </table>

   </p>
  </div>

  

  
  <div class="section" id="sdo.classes">
   <h2 class="title">Predefined Classes</h2>
   <p class="para">
    SDO consists of three sets of interfaces.  The first set covers those
    interfaces for use by typical SDO applications.  These are identified 
    by the package prefix &#039;SDO_&#039;.  The second set is those used to reflect 
    on, and work with, the model of a data object.  These are identified 
    by the package prefix &#039;SDO_Model_&#039;.  Finally, the third set are those 
    use by Data Access Service implementations and are identified by the 
    package prefix &#039;SDO_DAS_&#039;.  The majority of SDO users will not need to 
    use or understand the &#039;SDO_Model_&#039; and &#039;SDO_DAS_&#039; interfaces.
   </p>

   <div class="section" id="sdo.class.sdo-apis">
    <h2 class="title">SDO Application Programmer Interface</h2>

    <div class="section" id="class.sdo-dataobject">
     <h2 class="title">
      <strong class="classname">SDO_DataObject</strong>
     </h2>
     <p class="para">
      The main interface through which data objects are manipulated.  In
      addition to the methods below, SDO_DataObject extends the
      ArrayAccess, SDO_PropertyAccess (defines <a href="language.oop5.overloading.html#object.get" class="link">__get()</a> /
      <a href="language.oop5.overloading.html#object.set" class="link">__set()</a> methods for property access overloading),
      Iterator, and Countable interfaces.
     </p>
     <div class="section"> <h2 class="title">Methods</h2>
      <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">
         <a href="sdo-dataobject.getsequence.html" class="link">getSequence</a>
         - get the sequence for the data object
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-dataobject.createdataobject.html" class="link">createDataObject</a>
         - create a child data object
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-dataobject.clear.html" class="link">clear</a>
         - unset the properties of a data object
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-dataobject.getcontainer.html" class="link">getContainer</a>
         - get the container (also known as &#039;parent&#039;) of this data object
        </p>
       </li>      
       <li class="listitem">
        <p class="para">
         <a href="sdo-dataobject.gettypename.html" class="link">getTypeName</a>
         - get the name of the type for this data object
        </p>
       </li>     
       <li class="listitem">
        <p class="para">
         <a href="sdo-dataobject.gettypenamespaceuri.html" class="link">getTypeNamespaceURI</a>
         - get the namespace URI of the type for this data object
        </p>
       </li>
      </ul>
     </div>
    </div>

    <div class="section" id="class.sdo-sequence">
     <h2 class="title">
      <strong class="classname">SDO_Sequence</strong>
     </h2>
     <p class="para">
      The interface through which sequenced data objects can be accessed
      to preserve ordering across a data object&#039;s properties and 
      to allow unstructured text.  
      SDO_Sequence preserves contiguous indices and therefore inserting 
      or removing elements may shift other elements up or
      down. In addition to the methods below, SDO_Sequence extends the
      ArrayAccess, Iterator and Countable interface.
     </p>
     <div class="section">
      <h2 class="title">Methods</h2>
      <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">
         <a href="sdo-sequence.getproperty.html" class="link">getProperty</a> 
         - get the property for a given sequence index
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-sequence.move.html" class="link">move</a>
         - move an element from one property index to another
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-sequence.insert.html" class="link">insert</a>
         - insert a new value into the sequence
        </p>
       </li>
      </ul>
     </div>
    </div>

    <div class="section" id="class.sdo-list">
     <h2 class="title">
      <strong class="classname">SDO_List</strong>
     </h2>
     <p class="para">
      The interface through which many-valued properties are manipulated.
      In addition to the method defined below, SDO_List extends ArrayAccess,
      Iterator and Countable.  SDO_List preserves contiguous indices and
      therefore inserting or removing elements may shift other elements
      up or down.
     </p>
     <div class="section">
      <h2 class="title">Methods</h2>
      <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">
         <a href="sdo-list.insert.html" class="link">insert</a> 
         - insert a new value into the list
        </p>
       </li>
      </ul>
     </div>
    </div>

    <div class="section" id="class.sdo-datafactory">
     <h2 class="title">
      <strong class="classname">SDO_DataFactory</strong>
     </h2>
     <p class="para">
      The interface through which data objects can be created.  
      A Data Access Service is responsible for populating the model 
      (i.e. configuring the data factory with the type and structure 
      information for the data objects it can create.) 
      for the factory and can then optionally return an instance of, 
      or implement, the SDO_DataFactory interface.
     </p>
     <div class="section">
      <h2 class="title">Methods</h2>
      <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">
         <a href="sdo-datafactory.create.html" class="link">create</a> 
         - create a new data object
        </p>
       </li>
      </ul>
     </div>
    </div>
        
    <div class="section" id="class.sdo-exception">
     <h2 class="title">
      <strong class="classname">SDO_Exception</strong>
     </h2>
     <p class="para">
      An SDO_Exception is thrown when the caller&#039;s request cannot be completed.
      The subclasses of SDO_Exception are:
      <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">SDO_PropertyNotSetException -
        the property specified exists but has not been set or does not have a
        default value
        </p>
       </li>
       <li class="listitem">
        <p class="para">SDO_PropertyNotFoundException -
        the property specified is not part of the data object&#039;s type
        </p>
       </li>
       <li class="listitem">
        <p class="para">SDO_TypeNotFoundException -
        the specified namespace URI or type name is unknown
        </p>
       </li>
       <li class="listitem">
        <p class="para">SDO_InvalidConversionException -
        conversion between the types of the assignment is not possible 
        </p>
       </li>
       <li class="listitem">
        <p class="para">SDO_IndexOutOfBoundsException -
        the numeric index into a data object, sequence or list is not in the
        valid range 
        </p>
       </li>
       <li class="listitem">
        <p class="para">SDO_UnsupportedOperationException -
        the request cannot be completed because it is not allowed,
        for example an attempt to set a read-only property.
        </p>
       </li>
      </ul>
     </p>
     <div class="section"> <h2 class="title">Methods</h2>
     <p class="para">One method is added to those inherited from the built in 
     <a href="language.exceptions.extending.html" class="link">Exception</a> class:
     </p>
      <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">
         <a href="sdo-exception.getcause.html" class="link">getCause</a> 
         - get the cause of this SDO_Exception
        </p>
       </li>

      </ul>
     </div>
    </div>
    
   </div>



   <div class="section" id="sdo.class.sdo-model-apis">
    <h2 class="title">SDO Reflection Application Programmer Interfaces</h2>

    <div class="section" id="class.sdo-model-reflectiondataobject">
     <h2 class="title">
      <strong class="classname">SDO_Model_ReflectionDataObject</strong>
     </h2>
     <p class="para">
      The main interface used to reflect on a data object instance 
      to obtain its model type and property information.  
      It is designed to follow the reflection pattern introduced in PHP 5.
     </p>
     <div class="section">
       <h2 class="title">Constructor</h2>     
       <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-reflectiondataobject.construct.html" class="link">__construct</a>
         - construct a new SDO_Model_ReflectionDataObject.
        </p>
       </li>     
      </ul>
     </div>
     <div class="section">
       <h2 class="title">Methods</h2>
      <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-reflectiondataobject.export.html" class="link">export</a>
         - get a string describing the data object.
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-reflectiondataobject.gettype.html" class="link">getType</a>
         - get the SDO_Model_Type for the data object.
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-reflectiondataobject.getinstanceproperties.html" class="link">getInstanceProperties</a>
         - get the instance properties of the data object.
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-reflectiondataobject.getcontainmentproperty.html" class="link">getContainmentProperty</a>
         - get the property which defines the containment relationship to the data object.
        </p>
       </li>
      </ul>
     </div>
    </div>

    <div class="section" id="class.sdo-model-type">
     <h2 class="title">
      <strong class="classname">SDO_Model_Type</strong>
     </h2>
     <p class="para">
      The interface through which a data object&#039;s type information can be 
      retrieved.  This interface can be used to find out the type name and 
      namespace URI of the type, whether the type allow open content, and so 
      on.
     </p>
     <div class="section"> <h2 class="title">Methods</h2>
      <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-type.getname.html" class="link">getName</a>
          - get the name of the type.
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-type.getnamespaceuri.html" class="link">getNamespaceURI</a>
         - get the namespace URI of the type.
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-type.isinstance.html" class="link">isInstance</a>
         - test for a data object being an instance of the type.
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-type.getproperties.html" class="link">getProperties</a>
         - get the properties of the type.
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-type.getproperty.html" class="link">getProperty</a>
         - get a property of the type.
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-type.isdatatype.html" class="link">isDataType</a>
         - test to see if this type is a primitive scalar type.
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-type.issequencedtype.html" class="link">isSequencedType</a>
         - test to see if this is a sequenced type.
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-type.isopentype.html" class="link">isOpenType</a>
         - test to see if this is an open type.
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-type.isabstracttype.html" class="link">isAbstractType</a>
         - test to see if this is an abstract type.
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-model-type.getbasetype.html" class="link">getBaseType</a>
         - get the base type of this type (if one exists).
        </p>
       </li>
      </ul>
     </div>
    </div>

    <div class="section" id="class.sdo-model-property">
     <h2 class="title">
      <strong class="classname">SDO_Model_Property</strong>
     </h2>
     <p class="para">
      The interface through which a data object&#039;s property information can 
      be retrieved.  This interface can be used to find out the type of a 
      property, whether a property has a default value, whether the 
      property is contained or reference by its parent, its cardinality, 
      and so on.
     </p>
     <div class="section"> <h2 class="title">Methods</h2>
      <ul class="itemizedlist">
        <li class="listitem">
         <p class="para">
          <a href="sdo-model-property.getname.html" class="link">getName</a>
          - get the name of the property.
         </p>
        </li>
        <li class="listitem">
         <p class="para">
          <a href="sdo-model-property.gettype.html" class="link">getType</a>
          - get the type of the property.
         </p>
        </li>
        <li class="listitem">
         <p class="para">
          <a href="sdo-model-property.ismany.html" class="link">isMany</a>
          - test to see if the property is many-valued.
         </p>
        </li>
        <li class="listitem">
         <p class="para">
          <a href="sdo-model-property.iscontainment.html" class="link">isContainment</a>
          - test to see if the property describes a containment relationship.
         </p>
        </li>
        <li class="listitem">
         <p class="para">
          <a href="sdo-model-property.getcontainingtype.html" class="link">getContainingType</a>
          - get the type which contains this property.
         </p>
        </li>
        <li class="listitem">
         <p class="para">
          <a href="sdo-model-property.getdefault.html" class="link">getDefault</a>
          - get the default value for a property.
         </p>
        </li>
      </ul>
     </div>
    </div>



   </div>

   <div class="section" id="sdo.class.sdo-das-spis">
    <h2 class="title">
     SDO Data Access Service Developer Interfaces
    </h2>

    <div class="section" id="class.sdo-das-dataobject">
     <h2 class="title">
      <strong class="classname">SDO_DAS_DataObject</strong>
     </h2>
     <p class="para">
      The interface through which a Data Access Service can access 
      a data object&#039;s 
      <a href="ref.sdo.html#class.sdo-das-changesummary" class="link">SDO_DAS_ChangeSummary</a>.
      The change summary is used by the Data Access Service to check for 
      conflicts when applying changes back to a data source.
     </p>
     <div class="section"> <h2 class="title">Methods</h2>
      <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-dataobject.getchangesummary.html" class="link">getChangeSummary</a> 
         - get the change summary for a data object
        </p>
       </li>

      </ul>
     </div>
    </div>

    <div class="section" id="class.sdo-das-changesummary">
     <h2 class="title">
      <strong class="classname">SDO_DAS_ChangeSummary</strong>
     </h2>
     <p class="para">
      The interface through which the change history of a data
      object is accessed.  The change summary holds information for any
      modifications on a data object which occurred since logging
      was activated.  In the case of deletions and modifications, the old
      values are also held in the change summary.
     </p>
     <p class="para">
      If logging is no longer active
      then the change summary only holds changes made up to the point when
      logging was deactivated.  
      Reactivating logging clears the change summary.
      This is useful when a set of changes have been written out by a
      DAS and the data object is to be reused.
     </p>
     <div class="section">
      <h2 class="title">Methods</h2>
      <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-changesummary.beginlogging.html" class="link">beginLogging</a> 
         - begin logging changes made to a data object
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-changesummary.endlogging.html" class="link">endLogging</a> 
         - end logging changes made to a data object
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-changesummary.islogging.html" class="link">isLogging</a> 
         - test to see if change logging is on
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-changesummary.getchangeddataobjects.html" class="link">getChangedDataObjects</a> 
         - get a list of the data objects which have been changed
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-changesummary.getchangetype.html" class="link">getChangeType</a> 
         - get the type of change which has been made to a data object
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-changesummary.getoldvalues.html" class="link">getOldValues</a> 
         - get a list of old values for a data object
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-changesummary.getoldcontainer.html" class="link">getOldContainer</a> 
         - get the old container data object for a deleted data object
        </p>
       </li>
      </ul>
     </div>
    </div>

    <div class="section" id="class.sdo-das-setting">
     <h2 class="title">
      <strong class="classname">SDO_DAS_Setting</strong>
     </h2>
     <p class="para">
      The interface through which the old value for a property is
      accessed. A list of settings is returned by the change summary method
      <a href="sdo-das-changesummary.getoldvalues.html" class="link">getOldValues</a>.
     </p>
     <div class="section">
      <h2 class="title">Methods</h2>
      <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-setting.getpropertyindex.html" class="link">getPropertyIndex</a> 
         - get the property index for the changed property
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-setting.getpropertyname.html" class="link">getPropertyName</a> 
         - get the property name for the changed property
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-setting.getvalue.html" class="link">getValue</a> 
         - get the old value for the changed property
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-setting.getlistindex.html" class="link">getListIndex</a> 
         - get the list index for the old value if it was part of a 
         many-valued property
        </p>
       </li>
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-setting.isset.html" class="link">isSet</a>
         - test to see if the property was set prior to being modified
         </p>
       </li>
      </ul>
     </div>
    </div>

    <div class="section" id="class.sdo-das-datafactory">
     <h2 class="title">
      <strong class="classname">SDO_DAS_DataFactory</strong>
     </h2>
     <p class="para">
      The interface for constructing the model for an SDO_DataObject.
      The SDO_DAS_DataFactory is an abstract class providing a static
      method which returns a concrete data factory implementation.
      The implementation is used by Data Access Services to create an 
      SDO model from their model.
      For example, a Relational Data Access Service might create and populate
      an SDO_DAS_DataFactory model based on a schema for a relational
      database.
     </p>
     <div class="section">
      <h2 class="title">Methods</h2>
      <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-datafactory.getdatafactory.html" class="link">getDataFactory</a> 
         - static methods for getting a concrete data factory instance
        </p>
       </li>
      </ul>
      <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-datafactory.addtype.html" class="link">addType</a> 
         - add a new type to the SDO model
        </p>
       </li>
      </ul>
      <ul class="itemizedlist">
       <li class="listitem">
        <p class="para">
         <a href="sdo-das-datafactory.addpropertytotype.html" class="link">addPropertyToType</a> 
         - add a new property to a type definition in the SDO model
        </p>
       </li>
      </ul>
     </div>
    </div>
   </div>
  </div>

 </div>

 

















































 





















 







 



































 







 










































 







 







 










































 



































 






































































 






















<h2>Table of Contents</h2><ul class="chunklist chunklist_reference"><li><a href="sdo-das-changesummary.beginlogging.html">SDO_DAS_ChangeSummary::beginLogging</a> — Begin change logging</li><li><a href="sdo-das-changesummary.endlogging.html">SDO_DAS_ChangeSummary::endLogging</a> — End change logging</li><li><a href="sdo-das-changesummary.getchangetype.html">SDO_DAS_ChangeSummary::getChangeType</a> — Get the type of change made to an SDO_DataObject</li><li><a href="sdo-das-changesummary.getchangeddataobjects.html">SDO_DAS_ChangeSummary::getChangedDataObjects</a> — Get the changed data objects from a change summary</li><li><a href="sdo-das-changesummary.getoldcontainer.html">SDO_DAS_ChangeSummary::getOldContainer</a> — Get the old container for a deleted SDO_DataObject</li><li><a href="sdo-das-changesummary.getoldvalues.html">SDO_DAS_ChangeSummary::getOldValues</a> — Get the old values for a given changed SDO_DataObject</li><li><a href="sdo-das-changesummary.islogging.html">SDO_DAS_ChangeSummary::isLogging</a> — Test to see whether change logging is switched on</li><li><a href="sdo-das-datafactory.addpropertytotype.html">SDO_DAS_DataFactory::addPropertyToType</a> — Adds a property to a type</li><li><a href="sdo-das-datafactory.addtype.html">SDO_DAS_DataFactory::addType</a> — Add a new type to a model</li><li><a href="sdo-das-datafactory.getdatafactory.html">SDO_DAS_DataFactory::getDataFactory</a> — Get a data factory instance</li><li><a href="sdo-das-dataobject.getchangesummary.html">SDO_DAS_DataObject::getChangeSummary</a> — Get a data object's change summary</li><li><a href="sdo-das-setting.getlistindex.html">SDO_DAS_Setting::getListIndex</a> — Get the list index for a changed many-valued property</li><li><a href="sdo-das-setting.getpropertyindex.html">SDO_DAS_Setting::getPropertyIndex</a> — Get the property index for a changed property</li><li><a href="sdo-das-setting.getpropertyname.html">SDO_DAS_Setting::getPropertyName</a> — Get the property name for a changed property</li><li><a href="sdo-das-setting.getvalue.html">SDO_DAS_Setting::getValue</a> — Get the old value for the changed property</li><li><a href="sdo-das-setting.isset.html">SDO_DAS_Setting::isSet</a> — Test whether a property was set prior to being modified</li><li><a href="sdo-datafactory.create.html">SDO_DataFactory::create</a> — Create an SDO_DataObject</li><li><a href="sdo-dataobject.clear.html">SDO_DataObject::clear</a> — Clear an SDO_DataObject's properties</li><li><a href="sdo-dataobject.createdataobject.html">SDO_DataObject::createDataObject</a> — Create a child SDO_DataObject</li><li><a href="sdo-dataobject.getcontainer.html">SDO_DataObject::getContainer</a> — Get a data object's container</li><li><a href="sdo-dataobject.getsequence.html">SDO_DataObject::getSequence</a> — Get the sequence for a data object</li><li><a href="sdo-dataobject.gettypename.html">SDO_DataObject::getTypeName</a> — Return the name of the type for a data object.</li><li><a href="sdo-dataobject.gettypenamespaceuri.html">SDO_DataObject::getTypeNamespaceURI</a> — Return the namespace URI of the type for a data object.</li><li><a href="sdo-exception.getcause.html">SDO_Exception::getCause</a> — Get the cause of the exception.</li><li><a href="sdo-list.insert.html">SDO_List::insert</a> — Insert into a list</li><li><a href="sdo-model-property.getcontainingtype.html">SDO_Model_Property::getContainingType</a> — Get the SDO_Model_Type which contains this property</li><li><a href="sdo-model-property.getdefault.html">SDO_Model_Property::getDefault</a> — Get the default value for the property</li><li><a href="sdo-model-property.getname.html">SDO_Model_Property::getName</a> — Get the name of the SDO_Model_Property</li><li><a href="sdo-model-property.gettype.html">SDO_Model_Property::getType</a> — Get the SDO_Model_Type of the property</li><li><a href="sdo-model-property.iscontainment.html">SDO_Model_Property::isContainment</a> — Test to see if the property defines a containment relationship</li><li><a href="sdo-model-property.ismany.html">SDO_Model_Property::isMany</a> — Test to see if the property is many-valued</li><li><a href="sdo-model-reflectiondataobject.construct.html">SDO_Model_ReflectionDataObject::__construct</a> — Construct an SDO_Model_ReflectionDataObject</li><li><a href="sdo-model-reflectiondataobject.export.html">SDO_Model_ReflectionDataObject::export</a> — Get a string describing the SDO_DataObject.</li><li><a href="sdo-model-reflectiondataobject.getcontainmentproperty.html">SDO_Model_ReflectionDataObject::getContainmentProperty</a> — Get the property which defines the containment relationship to the data object</li><li><a href="sdo-model-reflectiondataobject.getinstanceproperties.html">SDO_Model_ReflectionDataObject::getInstanceProperties</a> — Get the instance properties of the SDO_DataObject</li><li><a href="sdo-model-reflectiondataobject.gettype.html">SDO_Model_ReflectionDataObject::getType</a> — Get the SDO_Model_Type for the SDO_DataObject</li><li><a href="sdo-model-type.getbasetype.html">SDO_Model_Type::getBaseType</a> — Get the base type for this type</li><li><a href="sdo-model-type.getname.html">SDO_Model_Type::getName</a> — Get the name of the type</li><li><a href="sdo-model-type.getnamespaceuri.html">SDO_Model_Type::getNamespaceURI</a> — Get the namespace URI of the type</li><li><a href="sdo-model-type.getproperties.html">SDO_Model_Type::getProperties</a> — Get the SDO_Model_Property objects defined for the type</li><li><a href="sdo-model-type.getproperty.html">SDO_Model_Type::getProperty</a> — Get an SDO_Model_Property of the type</li><li><a href="sdo-model-type.isabstracttype.html">SDO_Model_Type::isAbstractType</a> — Test to see if this SDO_Model_Type is an abstract data type</li><li><a href="sdo-model-type.isdatatype.html">SDO_Model_Type::isDataType</a> — Test to see if this SDO_Model_Type is a primitive data type</li><li><a href="sdo-model-type.isinstance.html">SDO_Model_Type::isInstance</a> — Test for an SDO_DataObject being an instance of this SDO_Model_Type</li><li><a href="sdo-model-type.isopentype.html">SDO_Model_Type::isOpenType</a> — Test to see if this type is an open type</li><li><a href="sdo-model-type.issequencedtype.html">SDO_Model_Type::isSequencedType</a> — Test to see if this is a sequenced type</li><li><a href="sdo-sequence.getproperty.html">SDO_Sequence::getProperty</a> — Return the property for the specified sequence index.</li><li><a href="sdo-sequence.insert.html">SDO_Sequence::insert</a> — Insert into a sequence</li><li><a href="sdo-sequence.move.html">SDO_Sequence::move</a> — Move an item to another sequence position</li></ul>
</div>
<hr /><div class="manualnavbar" style="text-align: center;">
 <div class="prev" style="text-align: left; float: left;"><a href="sdo.sample.reflection.html">Reflecting on Service Data Objects</a></div>
 <div class="next" style="text-align: right; float: right;"><a href="sdo-das-changesummary.beginlogging.html">SDO_DAS_ChangeSummary::beginLogging</a></div>
 <div class="up"><a href="book.sdo.html">SDO</a></div>
 <div class="home"><a href="index.html">PHP Manual</a></div>
</div></body></html>