當前位置: 首頁>>代碼示例>>PHP>>正文


PHP conexion::consultar方法代碼示例

本文整理匯總了PHP中conexion::consultar方法的典型用法代碼示例。如果您正苦於以下問題:PHP conexion::consultar方法的具體用法?PHP conexion::consultar怎麽用?PHP conexion::consultar使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在conexion的用法示例。


在下文中一共展示了conexion::consultar方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: conexion

 function Reporte_Gastos($fechaInicio, $fechaFin, $empresa, $usuario, $centro, $concepto)
 {
     $cnn = new conexion();
     $aux = array();
     $extra = "";
     if ($empresa > 0 && $empresa != 'Todas') {
         $extra .= " and U.u_empresa in (select e_id from empresas where e_id='{$empresa}')";
     }
     if ($centro != "Todas") {
         $extra .= " and EP.idcentrocosto='{$centro}'";
     }
     if ($usuario != "Todas") {
         $extra .= " and T.t_iniciador='{$usuario}'";
     }
     if ($concepto != "Todas") {
         $extra .= " and CC.dc_id='{$concepto}'";
     }
     // Convierte fechas a formato de mysql
     $date = explode("/", $fechaInicio);
     $fechaInicio = $date[2] . "-" . $date[1] . "-" . $date[0];
     $date = explode("/", $fechaFin);
     $fechaFin = $date[2] . "-" . $date[1] . "-" . $date[0];
     $query = sprintf("SELECT \ne_codigo,cc_centrocostos,u_nombre,cp_concepto, SUM(dc_total_aprobado) as total\nFROM comprobaciones C \nINNER JOIN tramites T ON (C.co_mi_tramite=T.t_id)\nINNER JOIN detalle_comprobacion DC on (C.co_id=DC.dc_comprobacion) \nINNER JOIN usuario U on(T.t_iniciador=U.u_id) \nINNER JOIN empleado EP on (U.u_id=EP.idfwk_usuario)\nINNER JOIN cat_cecos CECO ON (EP.idcentrocosto = CECO.cc_id)\nINNER JOIN empresas E on (U.u_empresa=E.e_id) \nINNER JOIN cat_conceptos CC on (DC.dc_concepto=CC.dc_id)\nWHERE DC.dc_id=DC.dc_id \n  AND(C.co_fecha_registro >='%s 00:00:01' and C.co_fecha_registro<='%s 23:59:59') %s \nGROUP BY e_codigo,cc_centrocostos,u_nombre,cp_concepto", $fechaInicio, $fechaFin, $extra);
     //error_log($query);
     $rst = $cnn->consultar($query);
     while ($fila = mysql_fetch_assoc($rst)) {
         array_push($aux, $fila);
     }
     return $aux;
 }
開發者ID:hackdracko,項目名稱:envasadoras,代碼行數:30,代碼來源:report.php

示例2: Siguiente_Etapa

 public function Siguiente_Etapa($etapa)
 {
     $query = sprintf("select et_siguiente_etapa from etapas where et_id=%s", $etapa);
     $rst = parent::consultar($query);
     $etapa = mysql_result($rst, 0, 0);
     return $etapa;
 }
開發者ID:hackdracko,項目名稱:belcorp,代碼行數:7,代碼來源:Etapa.php

示例3: Load_Homologacion_Usuarios

 public function Load_Homologacion_Usuarios($id)
 {
     $arr = array();
     $query = sprintf("SELECT hd_u_id FROM homologacion_dueno \n                              WHERE hd_au_id='%s'", $id);
     //error_log($query);
     return $this->rst_grupo_usuario = parent::consultar($query);
 }
開發者ID:hackdracko,項目名稱:envasadoras,代碼行數:7,代碼來源:AgrupacionUsuarios.php

示例4: 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");
     }
 }
開發者ID:hackdracko,項目名稱:belcorp,代碼行數:8,代碼來源:Comprobacion.php

示例5: 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");
     }
 }
開發者ID:hackdracko,項目名稱:envasadoras,代碼行數:8,代碼來源:SolicitudesGastos.php

示例6: conexion

 function Get_nombre_proveedores($dato)
 {
     $cnn = new conexion();
     $query = "select pro_proveedor from proveedores where pro_rfc like '%{$dato}%'";
     $rst = $cnn->consultar($query);
     $fila = mysql_fetch_assoc($rst);
     echo $fila["pro_proveedor"];
 }
開發者ID:hackdracko,項目名稱:belcorp,代碼行數:8,代碼來源:catalogo_proveedores.php

示例7: 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");
     }
 }
開發者ID:hackdracko,項目名稱:envasadoras,代碼行數:8,代碼來源:AMEX.php

示例8: 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");
     }
 }
開發者ID:hackdracko,項目名稱:envasadoras,代碼行數:12,代碼來源:CatalogsZone.php

示例9: 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");
     }
 }
開發者ID:hackdracko,項目名稱:envasadoras,代碼行數:8,代碼來源:Proveedores.php

示例10: 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");
     }
 }
開發者ID:hackdracko,項目名稱:envasadoras,代碼行數:8,代碼來源:DetalleComprobacionGastos.php

示例11: Busca_papa_por_hijo

 private function Busca_papa_por_hijo($dir)
 {
     global $RUTA_R;
     $query = sprintf("select * from menu where m_pertenece_a in (select m_pertenece_a from menu where m_ruta='%s') order by m_orden,m_nombre;", $dir);
     $rst = parent::consultar($query);
     while ($fila = mysql_fetch_assoc($rst)) {
         $this->hijos[$fila["m_nombre"]] = $RUTA_R . $fila["m_ruta"];
     }
 }
開發者ID:hackdracko,項目名稱:belcorp,代碼行數:9,代碼來源:Menu.php

示例12: existe_producto

 public function existe_producto($descripcion, $marca)
 {
     $consulta = "select * from productos where descripcion like '{$descripcion}' and fabricante like '{$marca}'";
     $resultado = conexion::consultar($consulta);
     if (conexion::contar_filas($resultado) > 0) {
         return true;
     } else {
         return false;
     }
 }
開發者ID:buster95,項目名稱:IMPRIMERE,代碼行數:10,代碼來源:producto.class.php

示例13: existe_servicio

 public function existe_servicio($descripcion = '', $maquina)
 {
     $consulta = "select * from servicios\n\t\twhere descripcion like '{$descripcion}' and maquinaria like '{$maquina}'";
     $resultado = conexion::consultar($consulta);
     if (conexion::contar_filas($resultado) > 0) {
         return true;
     } else {
         return false;
     }
 }
開發者ID:buster95,項目名稱:IMPRIMERE,代碼行數:10,代碼來源:servicio.class.php

示例14: 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;
     }
 }
開發者ID:hackdracko,項目名稱:belcorp,代碼行數:14,代碼來源:Idioma.php

示例15: Descuentos

 function Descuentos()
 {
     $aux = array();
     $cnn = new conexion();
     $query = "SELECT * from rechazos ";
     $rst = $cnn->consultar($query);
     while ($fila = mysql_fetch_assoc($rst)) {
         array_push($aux, array("nombre" => $fila["re_motivo"]));
     }
     return $aux;
 }
開發者ID:hackdracko,項目名稱:envasadoras,代碼行數:11,代碼來源:Cancelaciones.php


注:本文中的conexion::consultar方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。