deleteing and commenting echos and print_rs in code

This commit is contained in:
Dante
2015-04-06 08:38:30 -04:00
parent dfff216809
commit 3e52cc6a13

View File

@@ -97,7 +97,6 @@ class indicatorsCalculator
$connection = $this->pdoConnection(); $connection = $this->pdoConnection();
$result = $this->pdoExecutorWithConnection($sqlString, array(), $connection); $result = $this->pdoExecutorWithConnection($sqlString, array(), $connection);
$result2 = $this->pdoExecutorWithConnection("select @median", array(), $connection); $result2 = $this->pdoExecutorWithConnection("select @median", array(), $connection);
print_r($result2);
if (sizeof($result) > 0) { if (sizeof($result) > 0) {
$returnValue = current(reset($result2)); $returnValue = current(reset($result2));
} }
@@ -624,11 +623,12 @@ class indicatorsCalculator
} }
public function interpolateQuery($query, $params) { /* For debug only:
* public function interpolateQuery($query, $params) {
$keys = array(); $keys = array();
# build a regular expression for each parameter # build a regular expression for each parameter
foreach ($params as $key => $value) { foreach ($params as $key => $value) {
echo "<br>llave", $key, " -- valor", $value; echo "<br>key", $key, " -- value", $value;
if (is_string($key)) { if (is_string($key)) {
$keys[] = '/:'.$key.'/'; $keys[] = '/:'.$key.'/';
} else { } else {
@@ -637,7 +637,7 @@ class indicatorsCalculator
} }
$query = preg_replace($keys, $params, $query, 1, $count); $query = preg_replace($keys, $params, $query, 1, $count);
return $query; return $query;
} }*/
} }