關於Yii架構的增刪改查

來源:互聯網
上載者:User
這篇文章主要介紹了關於Yii架構的增刪改查,有著一定的參考價值,現在分享給大家,有需要的朋友可以參考一下

一、查詢資料

1、findAll(根據一個條件查詢一個集合)

$admin=Admin::model()->findAll($condition,$params);$admin=Admin::model()->findAll("username=:name",array(":name"=>$username));$admin=Admin::model()->findAll(“username=:name and age=:age” , array(“:name”=>$name, “age”=>$age)); $admin=Admin::model()->findAll(“username like :name and age=:age” , array(“:name”=>$name, “age”=>$age)); $infoArr= NewsList::model()->findAll("status = '1' ORDER BY id DESC limit 10 ");

2、findAllByPk(根據主鍵查詢一個集合,可以使用多個主鍵)

$admin=Admin::model()->findAllByPk($postIDs,$condition,$params);$admin=Admin::model()->findAllByPk($id,"name like :name and age=:age",array(':name'=>$name,'age'=>$age)); $admin=Admin::model()->findAllByPk(array(1,2));

3、findAllByAttributes(根據條件查詢一個集合,可以是多個條件,把條件放到數組裡面)

$admin=Admin::model()->findAllByAttributes($attributes,$condition,$params); $admin=Admin::model()->findAllByAttributes(array('username'=>'admin'));

4、findAllBySql(根據SQL語句查詢一個數組)

$admin=Admin::model()->findAllBySql($sql,$params);$admin=Admin::model()->findAllBySql("select * from admin where username like :name",array(':name'=>'%ad%'));

5、findByPk(根據主鍵查詢出一個對象)

$admin=Admin::model()->findByPk($postID,$condition,$params);$admin=Admin::model()->findByPk(1);

6、find(根據一個條件查詢出一組資料,可能是多個,只返回第一行資料)

$row=Admin::model()->find($condition,$params);$row=Admin::model()->find('username=:name',array(':name'=>'admin'));

7、findByAttributes(根據條件查詢一組資料,可以是多個條件,把條件放到數組裡面,查詢第一條資料)

$admin=Admin::model()->findByAttributes($attributes,$condition,$params);$admin=Admin::model()->findByAttributes(array('username'=>'admin'));

8、findBySql(根據SQL語句查詢一組資料,查詢第一條資料)

$admin=Admin::model()->findBySql($sql,$params);$admin=Admin::model()->findBySql("select * from admin where username=:name",array(':name'=>'admin'));

9、count(根據一個條件查詢一個集合有多少條記錄,返回一個int型數字)

$count=Post::model()->count($condition,$params);$count=Post::model()->count("username=:name",array(":name"=>$username));

10、countBySql(根據SQL語句查詢一個集合有多少條記錄,返回一個int型數字)

$count=Post::model()->countBySql($sql,$params);$count=Post::model()->countBySql("select * from admin where username=:name",array(':name'=>'admin'));

11、exists(根據一個條件查詢查詢得到的數組有沒有資料,如果有資料返回一個true,否則沒有找到)

$exists=Post::model()->exists($condition,$params);$exists=Post::model()->exists("name=:name",array(":name"=>$username));

二、添加資料

save(添加資料)

$admin=new Admin;       $admin->username =$username;$admin->password =$password;if($admin->save() > 0){echo"添加成功"; }else{echo"添加失敗"; }

三、修改資料

update($pk主鍵,可以是一個也可以是一個集合,$attributes是要修改的欄位的集合,$condition條件,$params傳入的值)

Post::model()->updateAll($attributes,$condition,$params);$count=Admin::model()->updateAll(array('username'=>'11111','password'=>'11111'),'password=:pass',array(':pass'=>'1111a1'));if($count> 0){echo "修改成功"; }else{echo"修改失敗"; }$result=PostList::model()->updateAll(array('status'=>'1'),'staff_id=:staff and host_id=:host',array(':staff'=>$staff_id,':host'=>$host_id))
Post::model()->updateByPk($pk,$attributes,$condition,$params);$count=Admin::model()->updateByPk(1,array('username'=>'admin','password'=>'admin'));$count=Admin::model()->updateByPk(array(1,2),array('username'=>'admin','password'=>'admin'),'username=:name',array(':name'=>'admin'));if($count>0){echo"修改成功"; }else{echo"修改失敗"; } Post::model()->updateCounters($counters,$condition,$params);$count=Admin::model()->updateCounters(array('status'=>1),'username=:name',array(':name'=>'admin'));if($count> 0){echo "修改成功"; }else{echo"修改失敗"; }

array('status'=>1)代表資料庫中的admin表根據條件username='admin',查詢出的所有結果status欄位都自加1

四、刪除資料

delete

Post::model()->deleteAll($condition,$params);$count=Admin::model()->deleteAll('username=:nameandpassword=:pass',array(':name'=>'admin',':pass'=>'admin'));$count= Admin::model()->deleteAll('id in("1,2,3")');//刪除id為這些的資料if($count>0){echo"刪除成功"; }else{echo"刪除失敗"; } Post::model()->deleteByPk($pk,$condition,$params);$count= Admin::model()->deleteByPk(1);$count=Admin::model()->deleteByPk(array(1,2),'username=:name',array(':name'=>'admin'));if($count>0){echo"刪除成功"; }else{echo"刪除失敗"; }

五、createCommand

$sql="SELECT u.account,i.* FROM sys_user as u left join user_info as i on u.id=i.user_id";$rows=Yii::app()->db->createCommand($sql)->query();foreach($rowsas $k => $v){    echo$v['add_time'];}

六、交易處理

$dbTrans= Yii::app()->db->beginTransaction();try{        $post=new Post;    $post->'title'='Hello dodobook!!!';if(!$post->save()){throw new Exception("Error Processing Request", 1);}    $dbTrans->commit();    $this->_end(0,'添加成功!!!');}catch(Exception$e){    $dbTrans->rollback();    $this->_end($e->getCode(),$e->getMessage());}

以上就是本文的全部內容,希望對大家的學習有所協助,更多相關內容請關注topic.alibabacloud.com!

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.