Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<?php
require_once('class.dbaccess.php');
require_once('class.cotizacion.php');
require_once('class.monedatipos.php');
require_once('class.page.php');
class Cotizaciones extends DBAccess
{
public function GetAll(Page $oPage = NULL)
{
$sql = "SELECT *";
$sql.= " FROM tblCotizaciones";
$sql.= " ORDER BY FechaHora DESC";
$sql.= ($oPage) ? Pageable::ParsePage($oPage) : "";
if (!($oRes = $this->GetQuery($sql)))
return false;
$arr = array();
while ($oRow = $oRes->GetRow())
{
$oCotizacion = new Cotizacion();
$oCotizacion->ParseFromArray($oRow);
array_push($arr, $oCotizacion);
$oRes->MoveNext();
}
return $arr;
}
public function GetLastCotizacion($IdMoneda = MonedaTipos::Dolar)
{
$sql = "SELECT *";
$sql.= " FROM tblCotizaciones";
$sql.= " WHERE IdMoneda = " . DB::Number($IdMoneda);
$sql.= " ORDER BY FechaHora DESC";
$sql.= " LIMIT 1";
if (!($oRes = $this->GetQuery($sql)) )
return false;
if (!($oRow = $oRes->GetRow()))
return false;
$oCotizacion = new Cotizacion();
$oCotizacion->ParseFromArray($oRow);
return $oCotizacion;
}
public function GetCountRows()
{
$sql = " SELECT *";
$sql.= " FROM tblCotizaciones";
$sql.= " WHERE 1";
if (!($oRes = $this->GetQuery($sql)))
return false;
$CountRows = $oRes->NumRows();
return $CountRows;
}
public function Create(Cotizacion $oCotizacion)
{
$oCotizacion->FechaHora = date("Y-m-d h:i:s");
$arr = array
(
'IdMoneda' => DB::Number($oCotizacion->IdMoneda),
'Cotizacion' => DB::Number($oCotizacion->Cotizacion),
'FechaHora' => DB::Date($oCotizacion->FechaHora)
);
if (!$this->Insert('tblCotizaciones', $arr))
return false;
return $oCotizacion;
}
}
?>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat