Ver Mensaje Individual
  #2 (permalink)  
Antiguo 29/10/2009, 21:12
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 7 meses
Puntos: 2135
Respuesta: Reutilizacion de sentencias sql

Pues no veo muy limpio lo que haces, pero podrías hacer algo así:
Código PHP:
Ver original
  1. public function Select_All($sTable)
  2. {
  3.        $Objtable= new BD_Table();
  4.        
  5.        $this->Query="SELECT * FROM $sTable";
  6.        $this->Query_Execution=mysql_query($this->Query);
  7.        $this->Query_Result=mysql_fetch_array($this->Query_Execution);
  8.  
  9.        return $this->Query_Result;
  10. }

Saludos.