Browse Source

removed debug

develop
Robin Thoni 8 years ago
parent
commit
ea9451ce69
1 changed files with 0 additions and 1 deletions
  1. 0
    1
      src/Utils/DataAccess/PgSqlDataAccess.php

+ 0
- 1
src/Utils/DataAccess/PgSqlDataAccess.php View File

243
         if ($spQuery->execute(array("sp_name" => $sp_name)))
243
         if ($spQuery->execute(array("sp_name" => $sp_name)))
244
         {
244
         {
245
             $sp_ = $spQuery->fetchAll();
245
             $sp_ = $spQuery->fetchAll();
246
-            var_dump($sp_);
247
             $sps = array("in" => array(), "out" => array());
246
             $sps = array("in" => array(), "out" => array());
248
             foreach ($sp_ as $p)
247
             foreach ($sp_ as $p)
249
                 $sps[strtolower($p["parameter_mode"])][] = $p;
248
                 $sps[strtolower($p["parameter_mode"])][] = $p;

Loading…
Cancel
Save