Ver Mensaje Individual
  #34 (permalink)  
Antiguo 25/10/2010, 18:12
Avatar de carlos_belisario
carlos_belisario
Colaborador
 
Fecha de Ingreso: abril-2010
Ubicación: Venezuela Maracay Aragua
Mensajes: 3.156
Antigüedad: 14 años, 7 meses
Puntos: 461
Respuesta: lo estoy haciendo bien??

pues les cuento que sigue dando el mismo problema ahora si que me voy a volver loco fijense lo hice como lo plantie y sin embargo me da el mismo problema
Código PHP:
Ver original
  1. public function selectAll($table,$condicion=NULL){
  2.         $this->_result[]=array();
  3.         $this->_row=array();       
  4.         try{                                   
  5.             /*$site_path = realpath(dirname(__FILE__)).'\config.ini';
  6.             $this->_conect=DatabaseFactory::create($site_path);*/
  7.             if(empty($condicion))
  8.             {
  9.                 $this->_query=$this->_conect->prepare("SELECT * FROM $table");
  10.                 $this->_query->execute();
  11.             }
  12.             else{
  13.                 $this->_query=$this->_conect->prepare("SELECT * FROM $table WHERE $condicion");
  14.                 $this->_query->execute();
  15.             }                  
  16.             while($this->_row=$this->_query->fetch()){ 
  17.                 $this->_result[]=$this->_row;          
  18.             }
  19.             //$this->_conect="";
  20.             return $this->_result;
  21.         }
  22.         catch(PDOExeption $e){
  23.             echo $e->getMessaage();
  24.         }
  25.     }  
  26.     public function ejecutarSentencia($query,$parametro=NULL,$return=true)
  27.     {      
  28.         $this->_result[]=array();
  29.         $this->_row=array();
  30.         try{           
  31.             /*$site_path = realpath(dirname(__FILE__)).'\config.ini';
  32.             $this->_conect=DatabaseFactory::create($site_path);*/
  33.             //$this->_conect=DatabaseFactory::create('C:/xampp/htdocs/taquilla/ayuda/clase_conexion_bien_echa/config.ini');
  34.             /*$site_path = realpath(dirname(__FILE__)).'\config.ini';
  35.             $this->_conect=DatabaseFactory::create($site_path);*/
  36.             $this->_query=$this->_conect->prepare($query);
  37.             $this->_query->execute($parametro);
  38.             if($return==true){                                                         
  39.                 while($this->_row=$this->_query->fetch()){ 
  40.                     $this->_result[]=$this->_row;
  41.                 }
  42.                 //$this->_conect="";
  43.                 return $this->_result;
  44.             }
  45.             else{
  46.                 //$this->_conect="";
  47.                 return $this->_query;
  48.             }              
  49.         }
  50.         catch(PDOExeption $e){
  51.             echo $e->getMessaage();
  52.         }
  53.     }
tambien lo intente colocandolo igual a blanco, iguale tambien $this->_row tambien por si era lo que pasaba y nada, que podra ser?? no le habia parado mucho porque sencillamente para verificar los datos hago un print_r de lo que traiga en la consulta pero eso no es el echo, deberia de traerme solo los datos que pido de manera optima xq si cree esto fue para ahorrarme trabajo no para darme que podra ser una ayuda por favor xq ya yo no veo el dilema saludos
__________________
aprende d tus errores e incrementa tu conocimientos
it's not a bug, it's an undocumented feature By @David
php the right way