本文整理汇总了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;
}
示例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;
}
示例3: eliminarDetalleProductoSucursalByProductolId
public function eliminarDetalleProductoSucursalByProductolId($id)
{
$sql = new Sql();
$sql->addTable('detalleProductoSucursales');
$sql->setOpcion('delete');
$sql->addWhere("`pedidoId =`" . $id);
Persistence::eliminar($sql);
}
示例4: eliminarCategoria
public function eliminarCategoria($id)
{
$sql = new Sql();
$sql->addTable('tipos');
$sql->setOpcion('delete');
$sql->addWhere("`idTipo =`" . $id);
Persistence::eliminar($sql);
}
示例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);
}
示例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;
}
示例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);
}
示例8: eliminarPedido
public function eliminarPedido($id)
{
$sql = new Sql();
$sql->addTable('pedidos');
$sql->setOpcion('delete');
$sql->addWhere("`idPedido =`" . $id);
Persistence::eliminar($sql);
}
示例9: eliminarMensaje
public function eliminarMensaje($id)
{
$sql = new Sql();
$sql->addTable('mensajes');
$sql->setOpcion('delete');
$sql->addWhere("`idMensaje` =" . $id);
Persistence::eliminar($sql);
}
示例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;
}
示例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);
}
示例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);
}