You are here

public function FrxPostgres::data in Forena Reports 7

Same name and namespace in other branches
  1. 6.2 plugins/FrxPostgres.inc \FrxPostgres::data()
  2. 6 plugins/FrxPostgres.inc \FrxPostgres::data()
  3. 7.2 plugins/FrxPostgres.inc \FrxPostgres::data()

Get data based on file data block in the repository.

Parameters

String $block_name:

Array $parm_data:

Query $subQuery:

File

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

Class

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

Code

public function data($block_name, $params = array(), $clause = '') {

  // Load the block from the file
  $db = $this->db;
  $block = $this
    ->load_block($block_name);
  $xml = '';
  if (@$block['source'] && $this
    ->access($block['access']) && $db) {
    $sql = $block['source'];
    if ($clause) {
      $sql = 'SELECT * FROM (' . trim($sql, ' ;') . ') ' . $clause;
    }
    $sql = $this->te
      ->replace($sql, $params);
    if ($this->use_postgres_xml) {
      $xml = $this
        ->postgres_xml($sql, $block_name);
    }
    else {
      $xml = $this
        ->php_xml($sql);
    }
    if ($this->debug) {
      if ($xml) {
        $d = htmlspecialchars($xml
          ->asXML());
      }
      forena_debug('SQL: ' . $sql, '<pre> SQL:' . $sql . "\n XML: " . $d . "\n</pre>");
    }
    return $xml;
  }
}