Prado\Data\SqlMap\Configuration\TSqlMapXmlMappingConfiguration::loadSelectKeyTag PHP Метод

loadSelectKeyTag() защищенный Метод

Load the selectKey statement from xml mapping.
protected loadSelectKeyTag ( $insert, $node )
    protected function loadSelectKeyTag($insert, $node)
    {
        $selectKey = new TSqlMapSelectKey();
        $this->setObjectPropFromNode($selectKey, $node);
        $selectKey->setID($insert->getID());
        $selectKey->setID($insert->getID() . '.SelectKey');
        $this->processSqlStatement($selectKey, $node);
        $insert->setSelectKey($selectKey);
        $mappedStatement = new TMappedStatement($this->_manager, $selectKey);
        $this->_manager->addMappedStatement($mappedStatement);
    }