0
Model
  public function excluirFiliadosNaoEnviados($base)
{
      $sql = "SELECT FROM " . $base . ".debito_automatico";
      $acao = $this->conexao->prepare($sql);  
      if($acao->execute()){
        return true;
      }else{
        return false;
      } 
}
Control
public function prepararfiliadosAction()
{
    $base = DATABASE_GERAL;
    if($this->repositorio->excluirFiliadosNaoEnviados($base)) {
        echo $this->repositorio->prepararFiliados($this->getMesCompetencia()) ? 'true' : 'false';
    }
    $this->_helper->layout->disableLayout();
    $this->_helper->viewRenderer->setNoRender(TRUE);
}
Query not working always returning false.