dbData::_tag_open PHP Method

_tag_open() public method

Processes XML opening tags. Elements currently processed are: DROP, CLUSTERED, BITMAP, UNIQUE, FULLTEXT & HASH.
public _tag_open ( &$parser, $tag, $attributes )
    function _tag_open(&$parser, $tag, $attributes)
    {
        $this->currentElement = strtoupper($tag);
        switch ($this->currentElement) {
            case 'ROW':
                $this->row = count($this->data);
                $this->data[$this->row] = array();
                break;
            case 'F':
                $this->addField($attributes);
            default:
                // print_r( array( $tag, $attributes ) );
        }
    }