Blame | Letzte Änderung | Log anzeigen | RSS feed
--TEST--XML_Query2XML::stopProfiling()--SKIPIF--<?php require_once dirname(dirname(__FILE__)) . '/skipif.php'; ?>--FILE--<?phprequire_once 'XML/Query2XML.php';require_once dirname(dirname(__FILE__)) . '/db_init.php';$query2xml =& XML_Query2XML::factory($db);$query2xml->startProfiling();$query2xml->stopProfiling();$dom =& $query2xml->getXML("SELECT*FROMartistORDER BYartistid",array('rootTag' => 'music_library','rowTag' => 'artist','idColumn' => 'artistid','elements' => array('artistid','name','birth_year','birth_place','genre','albums' => array('sql' => array('data' => array('artistid'),'query' => 'SELECT * FROM album WHERE artist_id = ? ORDER BY albumid'),'rootTag' => 'albums','rowTag' => 'album','idColumn' => 'albumid','elements' => array('albumid','title','published_year','comment')))));$profile = $query2xml->getRawProfile();print count($profile['queries'])?>--EXPECT--0