Yii框架学习笔记(四)连接数据库

YII 采用 ORM(object-Relation Mapping)的设计模式进行数据库编程。

配置数据库连接 在 protected/config/main.php 文件中:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
'db'=>array(
'connectionString'=>'mysql:host=localhost;dbname=testdrive',
'emulatePreare'=>true,
'username'=>'root',
'password'=>'',
'charset'=>'utf8',
),```

定义数据库操作类:models

```php
<?php

class User extends CActiveRecord{
public static function model(__CLASS__){
return parent::model($className);
}
//静态方法model()是每一个AR类所必须的。

public function tableName(){
return '{{User}}';
}
}
?>

实例化数据库操作类:controllers

1
2
3
4
5
6
7
8
9
10
11
12
13
<?php
class UserController extends Controller{
public function actionIndex(){
$model = new User;
$model->username = 'admin';
$model->password = '123456';
$model->email = '[email protected]';
var_dump($model->save());
exit;
$this->render('index');
}
}
?>

读取记录:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
//查找满足指定条件的结果中的一行

$user = User::model->find($condition,$params);

//查找具有指定主键值得那一行

$user = User::model->findByPk($postId,$condition,$params);

//查找具有指定属性值的行

$user = User::model->findByAttributes($attributes,$condition,$params);

//通过指定的SQL语句查找结果中的第一行
$user = User::model->findBySql($sql,$params);

// 查找满足指定条件的所有行

$posts=Post::model()->findAll($condition,$params);

// 查找带有指定主键的所有行

$posts=Post::model()->findAllByPk($postIDs,$condition,$params);

// 查找带有指定属性值的所有行

$posts=Post::model()->findAllByAttributes($attributes,$condition,$params);

// 通过指定的SQL语句查找所有行

$posts=Post::model()->findAllBySql($sql,$params);

我们可以让$condition 成为一个 CDbCriteria 的实例。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
$criteria = new CDbCriteria;

$criteria->select = 'title'; //只选择'title'列

$criteria->condition = 'postID=:postID';

$criteria->params = array(':postID'=>10);

$post = Post::model->find($criteria); //$params不需要了
// 获取满足指定条件的行数

$n=Post::model()->count($condition,$params);

// 通过指定的 SQL 获取结果行数

$n=Post::model()->countBySql($sql,$params);

// 检查是否至少有一行复合指定的条件

$exists=Post::model()->exists($condition,$params);

更新记录:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
$post = Post::model->findByPk(10);

$post->title = 'new post title';

$post->save(); //将更改保存到数据库

//更新符合指定条件的行

Post::model->updateAll($attributes,$condition,$params);

//更新符合指定条件和主键的行

Post::model->updateByPk($pk,$attributes,$condition,$params);

//更新满足指定条件的行的计数列

Post::model->updateCounters($counters,$condition,$params);

删除数据:

1
2
3
4
5
6
7
8
9
10
11
$post=Post::model()->findByPk(10); // 假设有一个帖子,其 ID 为 10

$post->delete(); // 从数据表中删除此行

// 删除符合指定条件的行

Post::model()->deleteAll($condition,$params);

// 删除符合指定条件和主键的行

Post::model()->deleteByPk($pk,$condition,$params);
Author

Ludis

Posted on

2014-04-13

Updated on

2014-04-13

Licensed under

Comments