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


PHP Sql::addWhere方法代碼示例

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


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

示例1: _crearLoad

 private function _crearLoad()
 {
     $bd = new MySQL();
     $sql = new Sql();
     $base = $bd->getBase();
     $tb = $bd->getTabla();
     $tabla = $base . ".{$tb}";
     $sql->addTable($tabla);
     $sql->addSelect("*");
     $sql->addWhere("usuario = :usuario");
     if ($this->_clave) {
         $sql->addWhere("clave = :clave");
     }
     return $sql;
 }
開發者ID:cancelajavi,項目名稱:2-DAW,代碼行數:15,代碼來源:Usuario.php

示例2: _crearLoad

 private function _crearLoad($campos = array(), $tabla = '', $accion = '')
 {
     $bd = new MySQL();
     $sql = new Sql();
     $base = $bd->getBase();
     $tabla = $base . ".{$tabla}";
     $sql->addTable($tabla);
     switch ($accion) {
         case 'buscar':
             $sql->addSelect("*");
             if ($campos) {
                 foreach ($campos as $key => $value) {
                     $sql->addWhere($key . " = :" . $key);
                 }
             }
             break;
         case 'guardar':
             $sql->setFuncion("insert");
             if ($campos) {
                 foreach ($campos as $key => $value) {
                     $sql->addSelect($key);
                     $sql->addValue(":" . $key);
                 }
             }
             break;
         case 'eliminar':
             $sql->setFuncion("delete");
             if ($campos) {
                 foreach ($campos as $key => $value) {
                     $sql->addWhere($key . " = :" . $key);
                 }
             }
             break;
         case 'modificar':
             $sql->setFuncion("update");
             if ($campos) {
                 foreach ($campos['select'] as $key => $value) {
                     $sql->addSelect($key . " = :" . $key);
                 }
                 foreach ($campos['where'] as $key => $value) {
                     $sql->addWhere($key . " = :" . $key);
                 }
             }
             break;
     }
     return $sql;
 }
開發者ID:RubenRodriguezFdz,項目名稱:RepositorioWebDAW,代碼行數:47,代碼來源:registro.php

示例3: eliminarDetalleProductoSucursalByProductolId

 public function eliminarDetalleProductoSucursalByProductolId($id)
 {
     $sql = new Sql();
     $sql->addTable('detalleProductoSucursales');
     $sql->setOpcion('delete');
     $sql->addWhere("`pedidoId =`" . $id);
     Persistence::eliminar($sql);
 }
開發者ID:johncuervo24,項目名稱:EjPHP,代碼行數:8,代碼來源:DetalleProductoSucursal.php

示例4: eliminarCategoria

 public function eliminarCategoria($id)
 {
     $sql = new Sql();
     $sql->addTable('tipos');
     $sql->setOpcion('delete');
     $sql->addWhere("`idTipo =`" . $id);
     Persistence::eliminar($sql);
 }
開發者ID:johncuervo24,項目名稱:EjPHP,代碼行數:8,代碼來源:Tipo.php

示例5: modificarCategoria

 public function modificarCategoria($id)
 {
     $sql = new Sql();
     $sql->addTable('categorias');
     $sql->setOpcion('update');
     $sql->addSet("`" . 'nombre' . "`" . "=" . "'" . $this->_nombre . "'");
     $sql->addWhere("`idCategoria =`" . $id);
     Persistence::modificar($sql);
 }
開發者ID:johncuervo24,項目名稱:EjPHP,代碼行數:9,代碼來源:Categoria.php

示例6: _crearLoad

 private function _crearLoad()
 {
     $bd = new MySQL();
     $sql = new Sql();
     $base = $bd->getBase();
     $tb = $bd->getTabla();
     $tabla = $base . ".{$tb}";
     $sql->addTable($tabla);
     $sql->addSelect("*");
     $sql->addWhere("codigo = :codigo");
     return $sql;
 }
開發者ID:cancelajavi,項目名稱:2-DAW,代碼行數:12,代碼來源:Producto.php

示例7: modificarProveedor

 public function modificarProveedor($id)
 {
     $sql = new Sql();
     $sql->addTable('proveedores');
     $sql->setOpcion('update');
     $sql->addSet("`" . 'nombre' . "`" . "=" . "'" . $this->_nombreContacto . "'");
     $sql->addSet("`" . 'apellido' . "`" . "=" . "'" . $this->_apellidoContacto . "'");
     $sql->addSet("`" . 'dni' . "`" . "=" . "'" . $this->_dniContacto . "'");
     $sql->addSet("`" . 'telefono' . "`" . "=" . "'" . $this->_telefonoContacto . "'");
     $sql->addSet("`" . 'empresa' . "`" . "=" . "'" . $this->_nombreEmpresa . "'");
     $sql->addSet("`" . 'ruc' . "`" . "=" . "'" . $this->_ruc . "'");
     $sql->addSet("`" . 'correo' . "`" . "=" . "'" . $this->_correo . "'");
     $sql->addWhere("`idProveedor` =" . $id);
     Persistence::modificar($sql);
 }
開發者ID:johncuervo24,項目名稱:EjPHP,代碼行數:15,代碼來源:Proveedor.php

示例8: eliminarPedido

 public function eliminarPedido($id)
 {
     $sql = new Sql();
     $sql->addTable('pedidos');
     $sql->setOpcion('delete');
     $sql->addWhere("`idPedido =`" . $id);
     Persistence::eliminar($sql);
 }
開發者ID:johncuervo24,項目名稱:EjPHP,代碼行數:8,代碼來源:Pedido.php

示例9: eliminarMensaje

 public function eliminarMensaje($id)
 {
     $sql = new Sql();
     $sql->addTable('mensajes');
     $sql->setOpcion('delete');
     $sql->addWhere("`idMensaje` =" . $id);
     Persistence::eliminar($sql);
 }
開發者ID:johncuervo24,項目名稱:EjPHP,代碼行數:8,代碼來源:Mensaje.php

示例10: _crearLoad

 private function _crearLoad()
 {
     $bd = new MySQL();
     $sql = new Sql();
     $base = $bd->getBase();
     $tb = $bd->getTabla();
     $tabla = $base . ".{$tb}";
     $sql->addTable($tabla);
     $sql->addSelect("*");
     $curso = $_POST['curso'];
     if (isset($_POST['nota'])) {
         $nota = $_POST['nota'];
     } else {
         $nota = "";
     }
     if (!empty($this->_asignatura)) {
         $sql->addWhere("asignatura = :asignatura");
     }
     if ($curso != 'Todos') {
         $sql->addWhere("curso = :curso");
     }
     if ($nota == 'suspensos') {
         $sql->addWhere("nota < 5");
     } elseif ($nota == 'aprobados') {
         $sql->addWhere("nota >= 5");
     }
     return $sql;
 }
開發者ID:cancelajavi,項目名稱:2-DAW,代碼行數:28,代碼來源:Nota.php

示例11: modificarProducto

 public function modificarProducto($id)
 {
     $sql = new Sql();
     $sql->addTable('productos');
     $sql->setOpcion('update');
     $sql->addSet("`" . 'idProveedor' . "`" . "=" . "'" . $this->_proveedorId . "'");
     $sql->addSet("`" . 'idTipo' . "`" . "=" . "'" . $this->_tipoId . "'");
     $sql->addSet("`" . 'marca' . "`" . "=" . "'" . $this->_marca . "'");
     $sql->addSet("`" . 'cantidad' . "`" . "=" . "'" . $this->_cantidad . "'");
     $sql->addSet("`" . 'precioCompra' . "`" . "=" . "'" . $this->_costo . "'");
     $sql->addSet("`" . 'precioVenta' . "`" . "=" . "'" . $this->_precio . "'");
     $sql->addSet("`" . 'descripcion' . "`" . "=" . "'" . $this->_descripcion . "'");
     $sql->addWhere("`productoId` =" . $id);
     Persistence::modificar($sql);
 }
開發者ID:johncuervo24,項目名稱:EjPHP,代碼行數:15,代碼來源:Producto.php

示例12: modificarUsuario

 public function modificarUsuario($id)
 {
     $sql = new Sql();
     $sql->addTable('usuarios');
     $sql->setOpcion('update');
     $sql->addSet("`" . 'nombre' . "`" . "=" . "'" . $this->_nombre . "'");
     $sql->addSet("`" . 'apellidoPa' . "`" . "=" . "'" . $this->_apellidoPaterno . "'");
     $sql->addSet("`" . 'apellidoMa' . "`" . "=" . "'" . $this->_apellidoMaterno . "'");
     $sql->addSet("`" . 'dni' . "`" . "=" . "'" . $this->_dni . "'");
     $sql->addSet("`" . 'telefono' . "`" . "=" . "'" . $this->_telefono . "'");
     $sql->addSet("`" . 'departamento' . "`" . "=" . "'" . $this->_departamento . "'");
     $sql->addSet("`" . 'distrito' . "`" . "=" . "'" . $this->_distrito . "'");
     $sql->addSet("`" . 'direccion' . "`" . "=" . "'" . $this->_direccion . "'");
     $sql->addSet("`" . 'referencia' . "`" . "=" . "'" . $this->_referencia . "'");
     $sql->addWhere("`idUsuario`= " . $id);
     Persistence::modificar($sql);
 }
開發者ID:johncuervo24,項目名稱:EjPHP,代碼行數:17,代碼來源:Usuario.php


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