Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.eventosmorfologicoscategoria.php');
require_once('class.filter.php');
require_once('class.page.php');
class EventosMorfologicosCategoriasEventos extends DBAccess implements IFilterable
{
public function ParseFilter(array $filter)
{
$sql = '';
return $sql;
}
public function ComparaFecha($FechaMenor, $FechaMayor){
$sql = " SELECT ";
$sql.= " TIMESTAMPDIFF(DAY, '".$FechaMenor."', '" .$FechaMayor. "') AS Dias";
if ( !($oRes = $this->GetQuery($sql)) )
return false;
if ( !($oRow = $oRes->GetRow()) )
return false;
if ($oRow['Dias'] >= 0 ){
return true;
}else{
return false;
}
}
public function GetPagesCount(Page $oPage, $filter = false)
{
$sql = "SELECT COUNT(1) / " . DB::Number($oPage->Size) . " AS Count";
$sql.= " FROM tblEventosMorfologicosCategoriasEventos";
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 tblEventosMorfologicosCategoriasEventos";
if ($filter)
$sql.= $this->ParseFilter($filter);
if ($oPage != NULL)
$sql.= " " . Pageable::ParsePage($oPage);
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEventosMorfologicosCategoriasEvento = new EventosMorfologicosCategoria();
$oEventosMorfologicosCategoriasEvento->ParseFromArray($oRow);
array_push($arr, $oEventosMorfologicosCategoriasEvento);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllByIdEvento($IdEvento, $TipoAptitud = null)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosMorfologicosCategoriasEventos CE ";
$sql.= " INNER JOIN tblEventosMorfologicosCategorias C ";
$sql.= " ON C.IdEventosMorfologicosCategoria = CE.IdEventosMorfologicosCategoria ";
$sql.= " WHERE IdEvento = ".$IdEvento;
if ($TipoAptitud !== null) {
$sql.= " AND C.TipoAptitud = " . DB::Bool($TipoAptitud);
}
$sql.= " ORDER BY C.IdEventosMorfologicosCategoria";
// print_r($sql);exit;
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEventosMorfologicosCategoriasEvento = new EventosMorfologicosCategoria();
$oEventosMorfologicosCategoriasEvento->ParseFromArray($oRow);
array_push($arr, $oEventosMorfologicosCategoriasEvento);
$oRes->MoveNext();
}
return $arr;
}
public function GetAllCaballosByIdEvento($IdEvento)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosMorfologicosCategoriasEventos CE ";
$sql.= " INNER JOIN tblEventosMorfologicosCategorias C ";
$sql.= " ON C.IdEventosMorfologicosCategoria = CE.IdEventosMorfologicosCategoria ";
$sql.= " WHERE IdEvento = ".$IdEvento;
$sql.= " ORDER BY C.IdEventosMorfologicosCategoria";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oEventosMorfologicosCategoriasEvento = new EventosMorfologicosCategoria();
$oEventosMorfologicosCategoriasEvento->ParseFromArray($oRow);
array_push($arr, $oEventosMorfologicosCategoriasEvento);
$oRes->MoveNext();
}
return $arr;
}
public function GetByIdCategoria($IdEventosMorfologicosCategoria, $IdEvento = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosMorfologicosCategoriasEventos EMCE";
$sql.= " INNER JOIN tblEventosMorfologicosCategorias EMC ";
$sql.= " ON EMC.IdEventosMorfologicosCategoria = EMCE.IdEventosMorfologicosCategoria ";
$sql.= " WHERE EMCE.IdEventosMorfologicosCategoria = " . DB::Number($IdEventosMorfologicosCategoria);
if ($IdEvento != NULL){
$sql.= " AND EMCE.IdEvento = " . DB::Number($IdEvento);
}
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEventosMorfologicosCategoriasEvento = new EventosMorfologicosCategoria();
$oEventosMorfologicosCategoriasEvento->ParseFromArray($oRow);
return $oEventosMorfologicosCategoriasEvento;
}
public function GetByIdEvento($IdEvento)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosMorfologicosCategoriasEventos";
$sql.= " WHERE IdEvento = " . DB::Number($IdEvento);
if (!($oRes = $this->GetQuery($sql)))
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oEventosMorfologicosCategoriasEvento = new EventosMorfologicosCategoriasEvento();
$oEventosMorfologicosCategoriasEvento->ParseFromArray($oRow);
return $oEventosMorfologicosCategoriasEvento;
}
public function GetCountRows(array $filter = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblEventosMorfologicosCategoriasEventos";
if ($filter)
$sql.= $this->ParseFilter($filter);
$sql.= " ORDER BY Posicion";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function Create(EventosMorfologicosCategoriasEvento $oEventosMorfologicosCategoriasEvento)
{
$arr = array(
'IdEventosMorfologicosCategoria' => DB::Number($oEventosMorfologicosCategoriasEvento->IdEventosMorfologicosCategoria),
'IdEvento' => DB::Number($oEventosMorfologicosCategoriasEvento->IdEvento),
'ActivoPrecio' => DB::Number($oEventosMorfologicosCategoriasEvento->ActivoPrecio),
'AdherentePrecio' => DB::Number($oEventosMorfologicosCategoriasEvento->AdherentePrecio),
'NoSocioPrecio' => DB::Number($oEventosMorfologicosCategoriasEvento->NoSocioPrecio)
);
if (!$this->Insert('tblEventosMorfologicosCategoriasEventos', $arr))
return false;
return $oEventosMorfologicosCategoriasEvento;
}
public function Update(EventosMorfologicosCategoria $oEventosMorfologicosCategoriasEvento)
{
$where = " IdEventosMorfologicosCategoriasEvento = " . DB::Number($oEventosMorfologicosCategoriasEvento->IdEventosMorfologicosCategoriasEvento);
$arr = array(
'IdEventosMorfologicosCategoria' => DB::Number($oEventosMorfologicosCategoriasEvento->IdEventosMorfologicosCategoria),
'IdEvento' => DB::Number($oEventosMorfologicosCategoriasEvento->IdEvento),
'ActivoPrecio' => DB::Number($oEventosMorfologicosCategoriasEvento->ActivoPrecio),
'AdherentePrecio' => DB::Number($oEventosMorfologicosCategoriasEvento->AdherentePrecio),
'NoSocioPrecio' => DB::Number($oEventosMorfologicosCategoriasEvento->NoSocioPrecio)
);
if (!DBAccess::Update('tblEventosMorfologicosCategoriasEventos', $arr, $where))
return false;
return $oEventosMorfologicosCategoriasEvento;
}
public function DeleteByEvento($IdEvento)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdEvento = " . DB::Number($IdEvento);
if (!DBAccess::Delete('tblEventosMorfologicosCategoriasEventos', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
public function Delete($IdEventosMorfologicosCategoria)
{
if (!DBAccess::$db->Begin())
return false;
$where = " IdEventosMorfologicosCategoria = " . DB::Number($IdEventosMorfologicosCategoria);
if (!DBAccess::Delete('tblEventosMorfologicosCategoriasEventos', $where))
{
DBAccess::$db->Rollback();
return false;
}
DBAccess::$db->Commit();
return true;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat