1. 程式人生 > >CI對資料庫的常用操作

CI對資料庫的常用操作

codeigniter (CI)是一個優秀、敏捷的PHP開源框架,尤其封裝了對資料庫的操作,很方便,以下是php ci常用的資料庫操作,作個記錄:

/*
 ==================================
 查詢
 $query = $this->db_query("SELECT * FROM table");
 ==================================
*/

//result() 返回物件陣列
$data = $query->result();

//result_array() 返回資料 
$data = $query->
result_array(); //row() 只返回一行物件陣列 $data = $query->row(); //num_rows() 返回查詢結果行數 $data = $query->num_rows(); //num_fields() 返回查詢請求的欄位個數 $data = $query->num_fields(); //row_array() 只返回一行陣列 $data = $query->row_array(); //free_result() 釋放當前查詢所佔用的記憶體並刪除關聯資源標識 $data = $query->free_result(); /* ================================== 插入操作 ================================== */
//上次插入操作生成的ID echo $this->db->insert_id(); //寫入和更新操作被影響的行數 echo $this->db->affected_rows(); //返回指定表的總行數 echo $this->db->count_all('table_name'); //輸出當前的資料庫版本號 echo $this->db->version(); //輸出當前的資料庫平臺 echo $this->db->platform(); //返回最後執行的查詢語句 echo $this->db->last_query(); //插入資料,被插入的資料會被自動轉換和過濾,例如:
//$data = array('name' => $name, 'email' => $email, 'url' => $url); $this->db->insert_string('table_name', $data); /* ================================== 更新操作 ================================== */ //更新資料,被更新的資料會被自動轉換和過濾,例如: //$data = array('name' => $name, 'email' => $email, 'url' => $url); //$where = "author_id = 1 AND status = 'active'"; $this->db->update_string('table_name', $data, $where); /* ================================== 選擇資料 ================================== */ //獲取表的全部資料 $this->db->get('table_name'); //第二個引數為輸出條數,第三個引數為開始位置 $this->db->get('table_name', 10, 20); //獲取資料,第一個引數為表名,第二個為獲取條件,第三個為條數 $this->db->get_where('table_name', array('id'=>$id), $offset); //select方式獲取資料 $this->db->select('title, content, date'); $data = $this->db->get('table_name'); //獲取欄位的最大值,第二個引數為別名,相當於max(age) AS nianling $this->db->select_max('age'); $this->db->select_max('age', 'nianling'); //獲取欄位的最小值 $this->db->select_min('age'); $this->db->select_min('age', 'nianling'); //獲取欄位的和 $this->db->select_sum('age'); $this->db->select_sum('age', 'nianling'); //自定義from表 $this->db->select('title', content, date'); $this->db->from('table_name'); //查詢條件 WHERE name = 'Joe' AND title = 'boss' AND status = 'active' $this->db->where('name', $name); $this->db->where('title', $title); $this->db->where('status', $status); //範圍查詢 $this->db->where_in('item1', 'item2'); $this->db->where_not_in('item1', 'item2'); //匹配,第三個引數為匹配模式 title LIKE '%match%' $this->db->like('title', 'match', 'before/after/both'); $this->db->not_like(); //分組 GROUP BY title, date $this->db->group_by('title', 'date'); //限制條數 $this->db->limit(0, 20); //這個函式會檢測資料型別,僅轉義字串型別的資料。 它會自動用單引號將你的資料括起來,你不用手動新增。 $this->db->escape(); For example: >$sql="insert into table(title)values(".$this->db ->escape($title).")";