ECSHOP MYSQL公用类库中的autoExecute方法

2016-09-07 22:02 来源:www.chinab4c.com 作者:ecshop专家

在ecshop种文件include/cls_mysql.php

正常操作

例如:

$sql = “UPDATE ecs_user SET user = ‘buxuan’ WHERE user_id = 1″;

$db->query($sql);

用ecshop的autoExecute操作,只需要

$table = “ecs_user”;

$field_values = array(“user” => “buxuan”);

$db->autoExecute($table, $field_values, “UPDATE”, “user_id = 1″);

// 执行的SQL: UPDATE ecs_user SET user = ‘buxuan’ WHERE user_id = 1

$table = “ecs_user”;

$field_values = array(“user” => “buxuan”);

$db->autoExecute($table, $field_values, 'INSERT', 'user_id = 1');
很方便的一个函数, ecshop的批量处理- 貌似应该也是用的这个来处理的吧
(责任编辑:chinab4c)