本文整理汇总了PHP中conexion::get_rows方法的典型用法代码示例。如果您正苦于以下问题:PHP conexion::get_rows方法的具体用法?PHP conexion::get_rows怎么用?PHP conexion::get_rows使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类conexion
的用法示例。
在下文中一共展示了conexion::get_rows方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: Load_Homologacion_Dueno_By_u_ID
public function Load_Homologacion_Dueno_By_u_ID($id)
{
$query = sprintf("SELECT * FROM homologacion_dueno \n WHERE hd_u_id='%s'", $id);
//error_log($query);
$this->rst_grupo_usuario = parent::consultar($query);
return parent::get_rows();
}
示例2: cargaGastoporTramite
public function cargaGastoporTramite($idTramite)
{
$query = sprintf("SELECT * FROM solicitud_gastos WHERE sg_tramite = '%s'", $idTramite);
$this->rst_solGastos = parent::consultar($query);
if (parent::get_rows() > 0) {
$this->sg_id = $this->Get_dato("sg_id");
}
}
示例3: Load_Tramite
public function Load_Tramite($id)
{
$query = sprintf("select * from tramites where t_id=%s", $id);
$this->rst_tramite = parent::consultar($query);
if (parent::get_rows() > 0) {
$this->t_id = $this->Get_dato("t_id");
}
}
示例4: Load_comensal
/**
* Cargamos los datos de un comensal
*
* @param integer $id
*/
public function Load_comensal()
{
$query = sprintf("SELECT * FROM comensales");
$this->rst_comensal = parent::consultar($query);
if (parent::get_rows() > 0) {
$this->id_comensal = $this->Get_dato("id_comensal");
}
}
示例5: obtenerProveedorporRFC
public function obtenerProveedorporRFC($rfc)
{
$query = sprintf("SELECT * FROM proveedores WHERE pro_rfc = '%s'", $rfc);
$this->rst_proveedores = parent::consultar($query);
if (parent::get_rows() > 0) {
$this->pro_id = $this->Get_dato("pro_id");
}
}
示例6: cargaDetalleComprobacion
public function cargaDetalleComprobacion($idComprobacion)
{
$query = sprintf("SELECT * FROM detalle_comprobacion_gastos WHERE dc_comprobacion = '%s'", $idComprobacion);
$this->rst_detalleCompGastos = parent::consultar($query);
if (parent::get_rows() > 0) {
$this->dc_id = $this->Get_dato("dc_id");
}
}
示例7: Load_Catalogs
/**
* Cargamos los datos de un concepto
*
*/
public function Load_Catalogs($id)
{
$query = sprintf("select * from cat_regiones_conceptos where reco_id=%s", $id);
$this->rst_catalogo = parent::consultar($query);
if (parent::get_rows() > 0) {
$this->dc_id = $this->Get_dato("reco_id");
}
}
示例8: obtenerCargosporID
public function obtenerCargosporID($idamex)
{
$query = sprintf("SELECT * FROM amex WHERE idamex = '%s'", $idamex);
$this->rst_rstAMEX = parent::consultar($query);
if (parent::get_rows() > 0) {
$this->idamex = $this->Get_dato("idamex");
}
}
示例9: Load_Tramite
/**
* Cargamos los datos de un tramite
* @param integer $id
*/
public function Load_Tramite($id)
{
$query = "SELECT * FROM tramites WHERE t_id = '{$id}'";
$this->rst_tramite = parent::consultar($query);
if (parent::get_rows() > 0) {
$this->t_id = $this->Get_dato("t_id");
}
}
示例10: cargaComprobacionGastosporTramite
public function cargaComprobacionGastosporTramite($idTramite)
{
$query = sprintf("SELECT * FROM comprobacion_gastos WHERE co_mi_tramite = '%s'", $idTramite);
//error_log("--->>Consultar datos de la comprobacion: ".$query);
$this->rst_compGastos = parent::consultar($query);
if (parent::get_rows() > 0) {
$this->co_id = $this->Get_dato("co_id");
}
}
示例11: Busca_ConceptoXCuenta
/**
* Busca concepto por cuenta
*/
public function Busca_ConceptoXCuenta($cuenta)
{
$query = sprintf("SELECT dc_id FROM cat_conceptosbmw WHERE cp_cuenta =%s", $cuenta);
$result = parent::consultar($query);
if (parent::get_rows() > 0) {
$row = mysql_fetch_assoc($result);
return $row;
} else {
return NULL;
}
}
示例12: conexion
function Get_Data($id = 0)
{
$cnn = new conexion();
$aux = array("id" => "0", "nombre" => "", "empresa" => 0, "datos" => "");
$query = sprintf("select * from grupos where g_id=%s", $id);
$rst = $cnn->consultar($query);
if ($cnn->get_rows() > 0) {
$fila = mysql_fetch_assoc($rst);
$aux["id"] = $fila["g_id"];
$aux["nombre"] = $fila["g_nombre"];
$aux["empresa"] = $fila["g_empresa"];
$aux["datos"] = $this->Get_detalle($id);
}
return $aux;
}
示例13: array
function Carga_datos($id = 0)
{
$aux = array("id" => 0, "nombre" => "", "banco" => "", "cuenta" => "", "usuario" => "", "activo" => "", "clave" => "", "cuenta_contable" => "");
$cnn = new conexion();
$query = sprintf("select * from tipo_empresas where te_id=%s", $id);
$rst = $cnn->consultar($query);
if ($cnn->get_rows() > 0) {
$fila = mysql_fetch_assoc($rst);
$aux["nombre"] = $fila["te_nombre"];
$aux["banco"] = $fila["te_banco"];
$aux["cuenta"] = $fila["te_cuenta"];
$aux["usuario"] = $fila["te_usuario"];
$aux["activo"] = $fila["te_activo"];
$aux["id"] = $fila["te_id"];
$aux["clave"] = $fila["te_clave_empleador"];
$aux["cuenta_contable"] = $fila["te_cuenta_contable"];
}
return $aux;
}
示例14: sprintf
function busca_profundidad($e_id, $profundidad, $contador = 0)
{
$query = sprintf("select u_jefe,u_id from usuario where u_id=%s", $e_id);
$aux = parent::consultar($query);
if (parent::get_rows() > 0) {
$e_id = mysql_result($aux, 0, 0);
if ($contador == $profundidad) {
return mysql_result($aux, 0, "u_id");
} else {
if (trim($e_id) == "") {
return mysql_result($aux, 0, "u_id");
}
$contador++;
return $this->busca_profundidad($e_id, $profundidad, $contador);
}
} else {
//NO tiene Jefe en tal profundidad
return -1;
}
}
示例15: Busca_PeriodoP
public function Busca_PeriodoP($ceco_id, $fecha)
{
$query = sprintf("SELECT * FROM periodo_presupuestal WHERE pp_ceco=%s AND pp_periodo_inicial<='%s' AND pp_periodo_final>='%s'", $ceco_id, $fecha, $fecha);
$this->rst_pp = parent::consultar($query);
return parent::get_rows();
}