SDO_Sequence::move

(^) Move an item to another sequence position void SDO_Sequence::move ( int $toIndex, int $fromIndex ) Modify the position of the item in the sequence, without altering the value of the property in the SDO_DataObject. Parameters: toIndex The destination sequence index. If this index is less than zero or greater than the size of the sequence then the value is appended.

SDO_Sequence::insert

(^) Insert into a sequence void SDO_Sequence::insert ( mixed $value [, int $sequenceIndex [, mixed $propertyIdentifier ]] ) Insert a new element at a specified position in the sequence. All subsequent sequence items are moved up. Parameters: value The new value to be inserted. This can be either a primitive or an SDO_DataObject. sequenceIndex

SDO_DAS_Relational::executeQuery

(^) Executes a given SQL query against a relational database and returns the results as a normalised data graph. SDODataObject SDO_DAS_Relational::executeQuery ( PDO $database_handle , string $SQL_statement [, array $column_specifier ] ) Executes a given query against the relational database, using the supplied PDO database handle. Uses the model that it built from the metadata to interpret the result set. Returns a dat

SDO_Model_Type::isSequencedType

(^) Test to see if this is a sequenced type bool SDO_Model_Type::isSequencedType ( void ) Test to see if this is a sequenced type. Returns TRUE if this type is sequence, otherwise returns FALSE. Sequenced types can have the ordering across properties preserved and can contain unstructured text. For more information on sequenced types see the section on Working with Sequenced Data Objects. Returns:

SDO_Sequence::getProperty

(^) Return the property for the specified sequence index. SDO_Model_Property SDO_Sequence::getProperty ( int $sequence_index ) Return the property for the specified sequence index. Parameters: sequence_index The position of the element in the sequence. Returns: An SDO_Model_Property. A return value of NULL means the sequence element does not be

SDO_Model_Type::getBaseType

(^) Get the base type for this type SDO_Model_Type SDO_Model_Type::getBaseType ( void ) Get the base type for this type. Returns the SDO_Model_Type for the base type if this type inherits from another, otherwise returns NULL. An example of when base types occur is when a type defined in XML schema inherits from another type by using <extension base="..."> Returns: Returns the SDO_Model_T

SDO_Model_Type::getProperties

(^) Get the SDO_Model_Property objects defined for the type array SDO_Model_Type::getProperties ( void ) Get an array of SDO_Model_Property objects describing the properties defined for the SDO_Model_Type. Each SDO_Model_Property holds information such as the property name, default value, and so on. Returns: Returns an array of SDO_Model_Property objects. Thi

SDO_Model_Type::isAbstractType

(^) Test to see if this SDO_Model_Type is an abstract data type bool SDO_Model_Type::isAbstractType ( void ) Test to see if this SDO_Model_Type is an abstract data type. Returns TRUE if this type is abstract, that is, no SDO_DataObject of this type can be instantiated, though other types may inherit from it. Returns: Returns TRUE if this type is an abstract data type, otherwise returns FALSE.

SDO_Model_Type::isDataType

(^) Test to see if this SDO_Model_Type is a primitive data type bool SDO_Model_Type::isDataType ( void ) Test to see if this SDO_Model_Type is a primitive data type. Returns TRUE if this type is a primitive data type, otherwise returns FALSE. Returns: Returns TRUE if this type is a primitive data type, otherwise returns FALSE. This function is EXPERIMENTAL. T

SDO_Model_Type::getProperty

(^) Get an SDO_Model_Property of the type SDO_Model_Property SDO_Model_Type::getProperty ( mixed $identifier ) Get an SDO_Model_Property of the type, identified by its property index or property name. Parameters: identifier The property index or property name. Returns: Returns the SDO_Model_Property. This fu