時間:2015-06-28 00:00:00 來源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評論(0)
Zend_Db數(shù)據(jù)庫知識
例子:
Model文件:
$this->fetchAll("is_jian=1","id DESC",0,2)->toArray();//根據(jù)is_jian=1,按id倒序排列取前2條記錄當?shù)谝粋€參數(shù)為null時,則直接按id倒序排列ASC為正序。
路由文件:
$video=new Video();//實例化數(shù)據(jù)庫類
$this->view->get2Video =$video->get2Video();//取到2條首頁推薦的數(shù)據(jù)
index.phtml文件:
get2Video as $video): ?>
添加引號防止數(shù)據(jù)庫攻擊
quote用法
$value = $db->quote('St John"s Wort');
// $value 現(xiàn)在變成了 '"St John\"s Wort"' (注意兩邊的引號)
// 為數(shù)組加引號
$value = $db->quote(array('a', 'b', 'c'));
// $value 現(xiàn)在變成了 '"a", "b", "c"' (","分隔的字符串)
quoteInto用法
echo $where = $db->quoteInto('id = ?', 1);
// $where 現(xiàn)在為 'id = "1"' (注意兩邊的引號)
// 在where語句中為數(shù)組加上引號
$where = $db->quoteInto('id IN(?)', array(1, 2, 3));
// $where 現(xiàn)在為 'id IN("1", "2", "3")' (一個逗號分隔的字符串)
(1)數(shù)據(jù)查詢總結
直接進行查詢.??? ( 使用完整的sql語句)
//function quoteInto($text, $value, $type = null, $count = null)
$db = $this->getAdapter();
$sql = $db->quoteInto('SELECT * FROM `m_video` WHERE `is_guo` =?', '1');
$result = $db->query($sql);
// 使用PDOStatement對象$result將所有結果數(shù)據(jù)放到一個數(shù)組中
$videoArray = $result->fetchAll();
fetchAll用法
fetchAll($where = null, $order = null, $count = null, $offset = null)
取回結果集中所有字段的值,作為連續(xù)數(shù)組返回,如果參數(shù)不設置就寫成null
可以取回結果集的指定條數(shù)
$videoArray=$this->fetchAll("is_jian=1 and is_guo=1","id DESC",0,2)->toArray();
fetchAssoc用法
fetchAssoc($sql, $bind = array())
取回結果集中所有字段的值,作為關聯(lián)數(shù)組返回, 第一個字段作為碼
$db = $this->getAdapter();
$videoArray=$db->fetchAssoc("SELECT * FROM m_video WHERE `is_jian` = :title",array('title' => '1'));
fetchCol用法
fetchCol($sql, $bind = array())
取回所有結果行的第一個字段名
$db = $this->getAdapter();
$videoArray=$db->fetchCol("SELECT name FROM m_video WHERE `is_jian` = :title",array('title' => '1'));
fetchOne用法
fetchOne($sql, $bind = array())
只取回第一個字段值
$db = $this->getAdapter();
echo $videoArray=$db->fetchOne("SELECT count(*) FROM m_video WHERE `is_jian` = :title",array('title' => '1'));
fetchPairs用法
fetchPairs($sql, $bind = array())
取回一個相關數(shù)組,第一個字段值為碼(id),第二個字段為值(name)
返回:Array( [1] => 十二生肖奇緣??? [2] => 桃花運),1,2:為id字段。
$db = $this->getAdapter();
$videoArray=$db->fetchPairs("SELECT id, name FROM m_video WHERE is_jian = :title",array('title' => '1'));
fetchRow用法
fetchRow($where = null, $order = null)
只取回結果集的第一行
$videoArray=$this->fetchRow("is_jian=1 and is_guo=1", 'id DESC')->toArray();
query用法
//function query($sql, $bind = array())
$db = $this->getAdapter();
$result = $db->query('SELECT * FROM `m_video`');
//$result = $db->query('SELECT * FROM `m_video` WHERE `name` = ? AND id = ?',array('十二生肖奇緣', '1'));
//$result->setFetchMode(Zend_Db::FETCH_OBJ);//FETCH_OBJ為默認值,FETCH_NUM,FETCH_BOTH
//while ($row = $result->fetch()) {
//??? echo $row['name'];
//}
//$rows = $result->fetch();
//$rows = $result->fetchAll();
//$obj = $result->fetchObject();//echo $obj->name;
// echo $Column = $result->fetchColumn(0);//得到結果集的第一個字段,比如0為id號,用于只取一個字段的情況
print_r($rows);
select用法
$db = $this->getAdapter();
$select = $db->select();
$select->from('m_video', array('id','name','clicks'))
->where('is_guo = :is_guo and name = :name')
->order('name')// 按什么排序列,參加為數(shù)組(多個字段)或字符串(一個字段)
->group()//分組
->having()//分組查詢數(shù)據(jù)的條件
->distinct()// 無參數(shù),去掉重復的值。有時候與groupby返回的結果一樣
->limit(10);
// 讀取結果使用綁定的參數(shù)
$params = array('is_guo' => '1','name'=>'十二生肖奇緣');
//$sql = $select->__toString();//得到查詢語句,可供調試
$result = $db->fetchAll($select,$params);
執(zhí)行select的查詢
$stmt = $db->query($select);
$result = $stmt->fetchAll();
或用
$stmt = $select->query();
$result = $stmt->fetchAll();
如果直接用
$db->fetchAll($select)結果一樣
多表聯(lián)合查詢用法
$db = $this->getAdapter();
$select = $db->select();
$select->from('m_video', array('id','name','pic','actor','type_id','up_time'))
->where('is_guo = :is_guo and is_jian = :is_jian')
->order('up_time')
->limit(2);
$params = array('is_guo' => '1','is_jian'=>'1');
$select->join('m_type', 'm_video.type_id = m_type.t_id', 'type_name');//多表聯(lián)合查詢
$videoArray = $db->fetchAll($select,$params);
find()方法,可以使用主鍵值在表中檢索數(shù)據(jù).
// SELECT * FROM round_table WHERE id = "1"
$row = $table->find(1);
// SELECT * FROM round_table WHERE id IN("1", "2", 3")
$rowset = $table->find(array(1, 2, 3));
(2)數(shù)據(jù)刪除總結
第一種方法:可以刪任意表
//quoteInto($text, $value, $type = null, $count = null)?
$table = 'm_video';// 設定需要刪除數(shù)據(jù)的表
$db = $this->getAdapter();
$where = $db->quoteInto('name = ?', 'ccc');// 刪除數(shù)據(jù)的where條件語句
echo $rows_affected = $db->delete($table, $where);// 刪除數(shù)據(jù)并得到影響的行數(shù)
第二種方法:只能刪除本表中的
? //delete用法
// delete($where)
$where = "name = 'bbb'";
echo $this->delete($where);// 刪除數(shù)據(jù)并得到影響的行數(shù)
(3)數(shù)據(jù)更新總結
第一種方法:可以更新任意表
// 以"列名"=>"數(shù)據(jù)"的格式構造更新數(shù)組,更新數(shù)據(jù)行
$table = 'm_video';// 更新的數(shù)據(jù)表
$db = $this->getAdapter();
$set = array (
'name' => '蝶影重重',
'clicks' => '888',
);
$where = $db->quoteInto('id = ?', '10');// where語句
// 更新表數(shù)據(jù),返回更新的行數(shù)
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);// 更新表數(shù)據(jù),返回更新的行數(shù)
(4)數(shù)據(jù)插入總結
第一種方法:可以在任意表中插入數(shù)據(jù)
$table = 'm_gao';// 插入數(shù)據(jù)的數(shù)據(jù)表
$db = $this->getAdapter();
// 以"列名"=>"數(shù)據(jù)"的格式格式構造插入數(shù)組,插入數(shù)據(jù)行
$row = array (
'title'???? => '大家好。111',
'content' => '影視網(wǎng)要改成用zend framework開發(fā)啊',
'time' => '2009-05-04 17:23:36',
);
// 插入數(shù)據(jù)行并返回插入的行數(shù)
$row
關鍵詞標簽:Zend,Framework,數(shù)據(jù)庫
相關閱讀
熱門文章 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 2021年最好用的10款php開發(fā)工具推薦 php利用淘寶IP庫獲取用戶ip地理位置 在 PHP 中使用命令行工具
人氣排行 詳解ucenter原理及第三方應用程序整合思路、方法 plsql developer怎么連接數(shù)據(jù)庫-plsql developer連接數(shù)據(jù)庫方法 PHP中防止SQL注入攻擊 PHP會話Session的具體使用方法解析 PHP運行出現(xiàn)Notice : Use of undefined constant 的解決辦法 PHP如何清空mySQL數(shù)據(jù)庫 CakePHP程序員必須知道的21條技巧 PHP采集圖片實例(PHP采集)