You are here

private function FrxMSSQL::php_xml in Forena Reports 7.3

Same name and namespace in other branches
  1. 6.2 plugins/FrxMSSQL.inc \FrxMSSQL::php_xml()
  2. 6 plugins/FrxMSSQL.inc \FrxMSSQL::php_xml()
  3. 7 plugins/FrxMSSQL.inc \FrxMSSQL::php_xml()
  4. 7.2 plugins/FrxMSSQL.inc \FrxMSSQL::php_xml()
  5. 7.4 plugins/FrxMSSQL.inc \FrxMSSQL::php_xml()
1 call to FrxMSSQL::php_xml()
FrxMSSQL::sqlData in plugins/FrxMSSQL.inc
Get data based on file data block in the repository.

File

plugins/FrxMSSQL.inc, line 120
Oracle specific driver that takes advantage of oracles native XML support

Class

FrxMSSQL
@file Oracle specific driver that takes advantage of oracles native XML support

Code

private function php_xml($sql) {
  $db = $this->db;
  $xml = new SimpleXMLElement('<table/>');
  $rs = mssql_query($sql, $db);
  $rownum = 0;
  while ($row = mssql_fetch_assoc($rs)) {
    $rownum++;
    $row_node = $xml
      ->addChild('row');
    $row_node['num'] = $rownum;
    foreach ($row as $key => $value) {
      $row_node
        ->addChild(strtolower($key), htmlspecialchars($value));
    }
  }
  if ($rs) {
    mssql_free_result($rs);
  }
  return $xml;
}