here = $db->quoteInto(''id = ?'', ''10'');// where语句
// 更新表数据,返回更新的行数
echo $rows_affected = $db->update($table, $set, $where);
第二种方法:只能更新本表中的
$set = array (
''name'' => ''蝶影重重22'',
''clicks'' => ''8880'',
);
$db = $this->getAdapter();
$where = $db->quoteInto(''id = ?'', ''10'');// where语句
$rows_affected = $this->update($set, $where);// 更新表数据,返回更新的行数
(4)数据插入总结
第一种方法:可以在任意表中插入数据
$table = ''m_gao'';// 插入数据的数据表
$db = $this->getAdapter();
// 以"列名"=>"数据"的格式格式构造插入数组,插入数据行
$row = array (
''title'' => ''大家好。111'',
''content'' => ''影视网要改成用zend framework开发啊'',
''time'' => ''2009-05-04 17:23:36'',
);
// 插入数据行并返回插入的行数
$rows_affected = $db->insert($table, $row);
// 最后插入的数据id
echo $last_insert_id = $db->lastInsertId();
$row=array(
''name''=>''curdate()'',
''address'' => new Zend_Db_Expr (''curdate()'')
)
这样子字段name会插入一个curdate()的字符串,而address插入一个时间值(curdate()的结果2009-05-09)
第二种方法:只能适合本表中的还没有总结出来
(5)事务处理
$table = ''m_gao'';// 插入数据的数据表
$db = $this->getAdapter();
$db->beginTransaction();//Zend_Db_Adapter会回到自动commit模式下,直到你再次调用 beginTransaction()方法
// 以"列名"=>"数据"的格式格式构造插入数组,插入数据行
$row = array (
''id''=>null,
''title'' => ''大家好。111'',
''content'' => ''影视网要改成用zend framework开发啊'',
''time'' => ''2009-05-04 17:23:36'',
);
try {
// 插入数据行并返回插入的行数
$rows_affected = $db->insert($table, $row);
// 最后插入的数据id
$last_insert_id = $db->lastInsertId();
$db->commit();// 事务提交
}catch (Exception $e){
$db->rollBack();
echo ''捕获异常:''.$e->getMessage();//打出异常信息
}
echo $last_insert_id;
(5)其他
$db = $this->getAdapter();
$tables = $db->listTables(); //列出当前数据库中的所有表
$fields = $db->describeTable(''m_video'');//列出一个表的字段情况
|