public function FrxOracle::sqlData in Forena Reports 7.5
Get data based on file data block in the repository.
Parameters
String $block_name:
Array $parm_data:
Query $subQuery:
Overrides FrxDataSource::sqlData
File
- src/
Driver/ FrxOracle.php, line 70 - Oracle specific driver that takes advantage of oracles native XML support
Class
Namespace
Drupal\forena\DriverCode
public function sqlData($sql, $options = array()) {
// Load the block from the file
$db = $this->db;
$xml = '';
// Load the types array based on data
$this->types = isset($options['type']) ? $options['type'] : array();
if ($sql && $db) {
// See if this block matches a declare begin end; syntax.
if (stripos($sql, 'end;') >= stripos($sql, 'begin') && stripos($sql, 'begin') !== FALSE) {
$params = $this->te
->object_to_array(\Frx::Data()
->currentContext());
$this
->call($sql, $params, array(
'return' => 'clob',
));
$xml = $params['return'];
if (trim($xml)) {
$xml = new \SimpleXMLElement($xml);
}
}
else {
$sql = $this->te
->replace($sql);
if ($this->use_oracle_xml && @$options['return_type'] != 'raw') {
$xml = $this
->oracle_xml($sql, 'table');
}
else {
$xml = $this
->php_xml($sql, $options);
}
}
if ($this->debug) {
if (is_object($xml) && method_exists($xml, 'asXML')) {
$d = $xml ? htmlspecialchars($xml
->asXML()) : '';
}
else {
$d = $xml ? htmlspecialchars(print_r($xml, 1)) : '';
}
$this
->debug('SQL: ' . $sql, '<pre> SQL:' . $sql . "\n XML: " . $d . "\n</pre>");
}
return $xml;
}
}