• FICHEIRO: /home2/nsomed/library/Zend/Db/Statement/Pdo.php
  • LINHA:    235
  • MENSAGEM: SQLSTATE[HY093]: Invalid parameter number: no parameters were bound, query was: SELECT `catalogo_material_pt`.`id` AS `catalogo_material_pt_id`, `catalogo_material_pt`.`ordem` AS `catalogo_material_pt_ordem`, `catalogo_material_pt`.`titulo` AS `catalogo_material_pt_titulo`, `catalogo_material_pt`.`url` AS `catalogo_material_pt_url`, `catalogo_material_pt`.`activo` AS `catalogo_material_pt_activo`, `catalogo_material_pt`.`actualizado` AS `catalogo_material_pt_actualizado`, `catalogo_material_pt`.`criado` AS `catalogo_material_pt_criado`, `catalogo_material_pt`.`ip` AS `catalogo_material_pt_ip` FROM `catalogo_material_pt` WHERE (catalogo_material_pt.id = '9') OR (catalogo_material_pt.id = ?)
  •  231.             }
  •  232.         } catch (PDOException $e) {
  •  233.             require_once 'Zend/Db/Statement/Exception.php';
  •  234.             $message = sprintf('%s, query was: %s', $e->getMessage(), $this->_stmt->queryString);
  •  235.             throw new Zend_Db_Statement_Exception($message, (int) $e->getCode(), $e);
  •  236.         }
  •  237.     }
  •  238.
  •  239.     /**
  •  240.      * Fetches a row from the result set.

  • FICHEIRO: /home2/nsomed/library/Zend/Db/Statement.php
  • LINHA:    303
  •  299.         /*
  •  300.          * Simple case - no query profiler to manage.
  •  301.          */
  •  302.         if ($this->_queryId === null) {
  •  303.             return $this->_execute($params);
  •  304.         }
  •  305.
  •  306.         /*
  •  307.          * Do the same thing, but with query profiler
  •  308.          * management before and after the execute.

  • FICHEIRO: /home2/nsomed/library/Zend/Db/Adapter/Abstract.php
  • LINHA:    480
  •  476.         }
  •  477.
  •  478.         // prepare and execute the statement with profiling
  •  479.         $stmt = $this->prepare($sql);
  •  480.         $stmt->execute($bind);
  •  481.
  •  482.         // return the results embedded in the prepared statement object
  •  483.         $stmt->setFetchMode($this->_fetchMode);
  •  484.         return $stmt;
  •  485.     }

  • FICHEIRO: /home2/nsomed/library/Zend/Db/Adapter/Pdo/Abstract.php
  • LINHA:    238
  •  234.             }
  •  235.         }
  •  236.
  •  237.         try {
  •  238.             return parent::query($sql, $bind);
  •  239.         } catch (PDOException $e) {
  •  240.             /**
  •  241.              * @see Zend_Db_Statement_Exception
  •  242.              */
  •  243.             require_once 'Zend/Db/Statement/Exception.php';

  • FICHEIRO: /home2/nsomed/library/Zend/Db/Adapter/Abstract.php
  • LINHA:    737
  •  733.     {
  •  734.         if ($fetchMode === null) {
  •  735.             $fetchMode = $this->_fetchMode;
  •  736.         }
  •  737.         $stmt = $this->query($sql, $bind);
  •  738.         $result = $stmt->fetchAll($fetchMode);
  •  739.         return $result;
  •  740.     }
  •  741.
  •  742.     /**

  • FICHEIRO: /home2/nsomed/library/Goweb/Db/Model.php
  • LINHA:    1116
  •  1112.                 $result = $this->_db->fetchAll($this->_select);
  •  1113.                 $cache->save($result, $this->_table . '_' . md5($this->_select->__toString()), $tags);
  •  1114.             }
  •  1115.         } else {
  •  1116.             $result = $this->_db->fetchAll($this->_select);
  •  1117.         }
  •  1118.
  •  1119.         // guarda as colunas extras submetidas
  •  1120.         //        $extraCols = $this->_select->getExtraCols();
  •  1121.

  • FICHEIRO: /home2/nsomed/application/Catalogo/Controller.php
  • LINHA:    567
  •  563.                     }
  •  564.                 
  •  565.                 }
  •  566.                 
  •  567.                 $materiais = $this->_materialModel->fetchAll();
  •  568.                 
  •  569.                 $materiaisSearch = array();
  •  570.     
  •  571.                 foreach ($materiais as $key => $value) {
  •  572.     

  • FICHEIRO: /home2/nsomed/application/Catalogo/Controller.php
  • LINHA:    268
  •  264.             $this->_resultCategorias = $this->_categoriaModel->count();
  •  265.             if ($this->_resultCategorias > 0) {
  •  266.                 return $this->listCategoriasAction($categoriaId);
  •  267.             } else {
  •  268.                 return $this->listProdutosAction();
  •  269.             }
  •  270.         } else {
  •  271.             return $this->listProdutosAction();
  •  272.         }
  •  273.     }

  • FICHEIRO: /home2/nsomed/library/Goweb/Controller/Action.php
  • LINHA:    276
  •  272.                  */
  •  273.                 /*if ($this->getInvokeArg('useCaseSensitiveActions')) {
  •  274.                     trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
  •  275.                 }*/
  •  276.                 $this->$action();
  •  277.             } else {
  •  278.                 $this->__call($action, array());
  •  279.             }
  •  280.             $this->postDispatch();
  •  281.         }

  • FICHEIRO: /home2/nsomed/library/Zend/Controller/Dispatcher/Standard.php
  • LINHA:    308
  •  304.             ob_start();
  •  305.         }
  •  306.
  •  307.         try {
  •  308.             $controller->dispatch($action);
  •  309.         } catch (Exception $e) {
  •  310.             // Clean output buffer on error
  •  311.             $curObLevel = ob_get_level();
  •  312.             if ($curObLevel > $obLevel) {
  •  313.                 do {

  • FICHEIRO: /home2/nsomed/library/Zend/Controller/Front.php
  • LINHA:    954
  •  950.                 /**
  •  951.                  * Dispatch request
  •  952.                  */
  •  953.                 try {
  •  954.                     $dispatcher->dispatch($this->_request, $this->_response);
  •  955.                 } catch (Exception $e) {
  •  956.                     if ($this->throwExceptions()) {
  •  957.                         throw $e;
  •  958.                     }
  •  959.                     $this->_response->setException($e);

  • FICHEIRO: /home2/nsomed/library/Goweb/Application.php
  • LINHA:    449
  •  445.     }
  •  446.
  •  447.     public function runApp(){
  •  448.         $frontController = Zend_Controller_Front::getInstance();
  •  449.         $frontController->dispatch();
  •  450.     }
  •  451. }

  • FICHEIRO: /home2/nsomed/public_html/index.php
  • LINHA:    54
  •  50. $application->initPainel();
  •  51. $lang = isset($_GET['lang']) ? $_GET['lang'] : null;
  •  52. $application->initLanguage($lang, true, false);
  •  53. $application->initLanguageAdmin($lang, true, true);
  •  54. $application->runApp();
  •  55.
  •  56.
  •  57. /**
  •  58.  * Efectua a traducao de uma string.
  •  59.  */