Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.puntajemorfologico.php');
require_once('class.filter.php');
require_once('class.page.php');
class PuntajesMorfologicos extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = '';
return $sql;
}
public function GetPagesCount(Page $oPage, array $filter = NULL)
{
$Count = $this->GetCountRows($filter);
$Count = $Count / $oPage->Size;
return ceil($Count);
}
public function GetAll(array $filter = NULL, Page $oPage = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblPuntajesMorfologicos";
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY IdPremio, IdCategoria, IdSexo ASC";
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oPuntajeMorfologico = new PuntajeMorfologico();
$oPuntajeMorfologico->ParseFromArray($oRow);
array_push($arr, $oPuntajeMorfologico);
$oRes->MoveNext();
}
return $arr;
}
public function GetById($IdPuntaje)
{
$sql = "SELECT *";
$sql.= " FROM tblPuntajesMorfologicos";
$sql.= " WHERE IdPuntaje = " . DB::Number($IdPuntaje);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oPuntajeMorfologico = new PuntajeMorfologico();
$oPuntajeMorfologico->ParseFromArray($oRow);
return $oPuntajeMorfologico;
}
public function GetByKey($IdPremio, $IdTipoMofologia, $IdCategoria, $IdSexo)
{
$sql = "SELECT *";
$sql.= " FROM tblPuntajesMorfologicos";
$sql.= " WHERE IdPremio = " . DB::Number($IdPremio);
$sql.= " AND IdTipoMorfologia = " . DB::String($IdTipoMofologia);
$sql.= " AND IdCategoria = " . DB::String($IdCategoria);
$sql.= " AND IdSexo = " . DB::Number($IdSexo);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oPuntajeMorfologico = new PuntajeMorfologico();
$oPuntajeMorfologico->ParseFromArray($oRow);
return $oPuntajeMorfologico;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblPuntajesMorfologicos";
if ($filter)
$sql.= $this->ParseFilter($filter);
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function Create(PuntajeMorfologico $oPuntajeMorfologico)
{
$arr = array
(
'IdPremio' => DB::Number($oPuntajeMorfologico->IdPremio),
'IdTipoMorfologia' => DB::String($oPuntajeMorfologico->IdTipoMorfologia),
'IdCategoria' => DB::String($oPuntajeMorfologico->IdCategoria),
'IdSexo' => DB::Number($oPuntajeMorfologico->IdSexo),
'Puntaje' => DB::Number($oPuntajeMorfologico->Puntaje)
);
if (!$this->Insert('tblPuntajesMorfologicos', $arr))
return false;
$oPuntajeMorfologico->IdPuntaje = DBAccess::GetLastInsertId();
return $oPuntajeMorfologico;
}
public function Update(PuntajeMorfologico $oPuntajeMorfologico)
{
$where = " IdPuntaje = " . DB::Number($oPuntajeMorfologico->IdPuntaje);
$arr = array('Puntaje' => DB::Number($oPuntajeMorfologico->Puntaje));
if (!DBAccess::Update('tblPuntajesMorfologicos', $arr, $where))
return false;
return $oPuntajeMorfologico;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat