1. Zend_Db_Adapter
10.1.2. 添加引号防止数据库攻击
10.1.3. 直接查询
10.1.4. 事务处理
10.1.5. 插入数据行
10.1.6. 更新数据行
$set = array(
‘id‘ => 4
);
//更新的表
$table = ‘test‘;
//更新的条件
$where = $db->quoteInto(‘id = ?‘,2);
$a = $db->update($table,$set,$where);
10.1.7. 删除数据行
//表名
$table = ‘test‘;
//条件
$where = $db->quoteInto(‘id = ?‘,3);
$a = $db->delete($table,$where);
10.1.8. 取回查询结果
//$db->query()->fetchAll() 与 $db->fetchAll() 都是返回连续数组
//$res1 = $db->query(‘select * from test‘)->fetchAll();
//$res1 = $db->fetchAll(‘select * from test‘);
//作为关联数组返回
//$res1 = $db->fetchAssoc(‘select * from test‘);
//取回所有结果行的第一个字段名
//$res1 = $db->fetchCol(‘select * from test‘);
//只取回第一个字段值
//$res1 = $db->fetchOne(‘select * from test‘);
//取回一个相关数组,第一个字段值为码
// 第二个字段为值
//$res1 = $db->fetchPairs(‘select * from test‘);
//只取回结果集的第一行
$res1 = $db->fetchRow(‘select * from test‘);
时间: 2024-10-11 11:43:43