本文整理汇总了PHP中class_datastore::getRow方法的典型用法代码示例。如果您正苦于以下问题:PHP class_datastore::getRow方法的具体用法?PHP class_datastore::getRow怎么用?PHP class_datastore::getRow使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类class_datastore
的用法示例。
在下文中一共展示了class_datastore::getRow方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1:
function uf_oaf_sc_programacion($ls_codreport,$ls_cuenta,$lo_cuenta)
{
$ls_sql="SELECT codemp, cod_report, sc_cuenta, denominacion, status, distribuir, nivel, referencia, no_fila, tipo, cta_res, modrep, ".
" (asignadoaux) as asignado, (eneroaux) as enero, (febreroaux) as febrero, (marzoaux) as marzo, (abrilaux) as abril, ".
" (mayoaux) as mayo, (junioaux) as junio, (julioaux) as julio, (agostoaux) as agosto, (septiembreaux) as septiembre, ".
" (octubreaux) as octubre, (noviembreaux) as noviembre, (diciembreaux) as diciembre ".
" FROM scg_pc_reporte ".
" WHERE cod_report='".$ls_codreport."' AND sc_cuenta='".$ls_cuenta."'";
$ds_temp=new class_datastore();
$rs_data=$this->io_sql->select($ls_sql);
$lo_cuenta=array();
if($rs_data===false)
{
$lb_existe=false;
}
else
{
if($row=$this->io_sql->fetch_row($rs_data))
{
$lb_existe=true;
$ds_temp->data=$this->io_sql->obtener_datos($rs_data);
$lo_cuenta=$ds_temp->getRow(1);
}
else
{
$lb_existe=false;
}
$this->io_sql->free_result($rs_data);
}
return $lb_existe;
}
示例2:
function uf_oaf_sc_programacion($ls_codreport,$ls_cuenta,$lo_cuenta)
{
$ls_sql="SELECT *
FROM scg_pc_reporte
WHERE cod_report='".$ls_codreport."' AND sc_cuenta='".$ls_cuenta."'";
$ds_temp=new class_datastore();
$rs_data=$this->io_sql->select($ls_sql);
$lo_cuenta=array();
if($rs_data===false)
{
$lb_existe=false;
}
else
{
if($row=$this->io_sql->fetch_row($rs_data))
{
$lb_existe=true;
$ds_temp->data=$this->io_sql->obtener_datos($rs_data);
$lo_cuenta=$ds_temp->getRow(1);
}
else
{
$lb_existe=false;
}
$this->io_sql->free_result($rs_data);
}
return $lb_existe;
}