Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.filter.php');
require_once('class.page.php');
require_once('class.encuesta.php');
class PreguntaOpciones extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = " WHERE 1";
$sql.= " AND Estado = '1'";
if (isset($filter['Opcion']))
$sql.= " AND Opcion LIKE '%" . DB::StringUnquoted($filter['Opcion']) . "%'";
if (isset($filter['IdPregunta']))
$sql.= " AND IdPregunta = " . DB::Number($filter['IdPregunta']);
return $sql;
}
public function GetPagesCount(Page $oPage, $filter = false)
{
$sql = "SELECT COUNT(1) / " . DB::Number($oPage->Size) . " AS Count";
$sql.= " FROM tblPreguntaOpciones";
if ($filter)
$sql.= " " . $this->ParseFilter($filter);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$Count = $oRow['Count'];
return ceil($Count);
}
public function GetAll(array $filter = NULL, Page $oPage = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblPreguntaOpciones";
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY Opcion ASC";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oPreguntaOpcion = new PreguntaOpcion();
$oPreguntaOpcion->ParseFromArray($oRow);
array_push($arr, $oPreguntaOpcion);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdPreguntaOpcion)
{
$sql = "SELECT *";
$sql.= " FROM tblPreguntaOpciones";
$sql.= " WHERE IdPreguntaOpcion = " . DB::Number($IdPreguntaOpcion);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oPreguntaOpcion = new PreguntaOpcion();
$oPreguntaOpcion->ParseFromArray($oRow);
return $oPreguntaOpcion;
}
public function GetByOpcion($IdPregunta, $Opcion)
{
$sql = "SELECT *";
$sql.= " FROM tblPreguntaOpciones";
$sql.= " WHERE IdPregunta = " . DB::Number($IdPregunta);
$sql.= " AND Opcion = " . DB::String($Opcion);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oPreguntaOpcion = new PreguntaOpcion();
$oPreguntaOpcion->ParseFromArray($oRow);
return $oPreguntaOpcion;
}
public function GetAllByPregunta(Pregunta $oPregunta)
{
$sql = "SELECT po.*,";
$sql.= " (";
$sql.= " SELECT COUNT(1)";
$sql.= " FROM tblRespuestaOpciones ro";
$sql.= " WHERE ro.IdPreguntaOpcion = po.IdPreguntaOpcion";
$sql.= " ) AS CantidadRespuestas";
$sql.= " FROM tblPreguntaOpciones po";
$sql.= " WHERE po.IdPregunta = " . DB::Number($oPregunta->IdPregunta);
$sql.= " GROUP BY po.IdPreguntaOpcion";
$sql.= " ORDER BY CantidadRespuestas DESC";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oPreguntaOpcion = new PreguntaOpcion();
$oPreguntaOpcion->ParseFromArray($oRow);
array_push($arr, $oPreguntaOpcion);
$oRes->MoveNext();
}
return $arr;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblPreguntaOpciones";
if ($filter)
$sql.= $this->ParseFilter($filter);
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function Create(PreguntaOpcion $oPreguntaOpcion)
{
$arr = array
(
'IdPregunta' => DB::Number($oPreguntaOpcion->IdPregunta),
'Opcion' => DB::String($oPreguntaOpcion->Opcion),
'Estado' => DB::Number(1)
);
if (!$this->Insert('tblPreguntaOpciones', $arr))
return false;
return $oPreguntaOpcion;
}
public function Update(PreguntaOpcion $oPreguntaOpcion)
{
$where = " IdPreguntaOpcion = " . DB::Number($oPreguntaOpcion->IdPreguntaOpcion);
$arr = array
(
'IdPregunta' => DB::Number($oPreguntaOpcion->IdPregunta),
'Opcion' => DB::String($oPreguntaOpcion->Opcion)
);
if (!DBAccess::Update('tblPreguntaOpciones', $arr, $where))
return false;
return $oPreguntaOpcion;
}
public function Delete($IdPreguntaOpcion)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdPreguntaOpcion = " . DB::Number($IdPreguntaOpcion);
if (!DBAccess::Delete('tblPreguntaOpciones', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat