一、AR模型方法
AR模型是ORM方式的一种,其将SQL查询进行封装,使得数据库读写更加方便便捷。其中一个AR类代表数据库中的一张表。
1.类的定义(Model模型)
定义方式如下:
publicstaticfunction model($className=__CLASS__)
{
return parent::model($className);
}
publicfunction tableName()
{
return 'tbl_post';}}
这是一个Model类的最小代码。
2.新增记录
$post->title='sample post';
$post->content='content for the sample post';
$post->create_time=time();
$post->save();
3.查询
查询语句比较复杂,主要有四种。
$post=Post::model()->find($condition,$params);
// find the row with the specified primary key
$post=Post::model()->findByPk($postID,$condition,$params);
// find the row with the specified attribute values
$post=Post::model()->findByAttributes($attributes,$condition,$params);
// find the first row using the specified SQL statement
$post=Post::model()->findBySql($sql,$params);
其中$condition部分就是SQL语句的WHERE部分,$params就是$condition里面需要的参数。示例:
$post=Post::model()->find('postID=:postID', array(':postID'=>10));
同时也可以使用CDbCriteria类来配置查询条件。示例如下:
$criteria->select='title'; // only select the 'title' column
$criteria->condition='postID=:postID';
$criteria->params=array(':postID'=>10);
$post=Post::model()->find($criteria); // $params is not needed
此时就无需$params参数了。
上述是查询单条记录,如果要查询多条记录则使用:
$posts=Post::model()->findAll($condition,$params);
// find all rows with the specified primary keys
$posts=Post::model()->findAllByPk($postIDs,$condition,$params);
// find all rows with the specified attribute values
$posts=Post::model()->findAllByAttributes($attributes,$condition,$params);
// find all rows using the specified SQL statement
$posts=Post::model()->findAllBySql($sql,$params);
4.更新记录
更新记录也可以用save()函数。AR模型会智能判定,若对象由new创建则新建记录,若对象是从数据库中的查询结果,则save函数就变成了更新。
然而更新也有特定的函数:
Post::model()->updateAll($attributes,$condition,$params);
// update the rows matching the specified condition and primary key(s)
Post::model()->updateByPk($pk,$attributes,$condition,$params);
// update counter columns in the rows satisfying the specified conditions
Post::model()->updateCounters($counters,$condition,$params);
5.删除记录
先查询后删除:
$post->delete(); // delete the row from the database table
直接删除:
Post::model()->deleteAll($condition,$params);
// delete the rows matching the specified condition and primary key(s)
Post::model()->deleteByPk($pk,$condition,$params);
6.从表单直接提交到数据库
如果数据表的项太多,插入新记录的时候参数列表可能会很长,这时候可以使用attributes属性来承接由表单POST过来的参数。(未测试)
$post->attributes=$_POST['Post'];
$post->save();
7.函数重载
在 执行记录的时候可以伴随着函数调用,这些函数主要 有:beforeValidate, afterValidate, beforeSave, afterSave, beforeDelete, afterDelete, afterConstruct, beforeFind, afterFind, 函 数名可以看出是什么意思了。
8. 使用事务
事务可以将读写操作作为一个整体进行,有效防止数据库读写出错。
$transaction=$model->dbConnection->beginTransaction();
try
{
// find and save are two steps which may be intervened by another request
// we therefore use a transaction to ensure consistency and integrity
$post=$model->findByPk(10);
$post->title='new post title';
$post->save();
$transaction->commit();
}
catch(Exception$e)
{
$transaction->rollback();
}
二、DAO使用
DAO(数据访问对象)对访问存储在不同数据库管理系统(DBMS)中的数据提供了一个通用的API。因此,在将底层 DBMS 更换为另一个时,无需修改使用了 DAO 访问数据的代码。
上面看到AR的方式很方便和便捷,然而其只能处理简单数据模型,如果需要读写多个数据表或者设计联合查询,AR方式往往很有限,这时候就需要使用DAO方式。
1. 建立连接
// 建立连接。你可以使用 try...catch 捕获可能抛出的异常
$connection->active=true;
......
$connection->active=false; // 关闭连接
2.执行SQL语句
// 如果没有,你可能需要显式建立一个连接:
// $connection=new CDbConnection($dsn,$username,$password);
$command=$connection->createCommand($sql);
// 如果需要,此 SQL 语句可通过如下方式修改:
// $command->text=$newSQL;
$rowCount=$command->execute(); // 执行无查询 SQL
$dataReader=$command->query(); // 执行一个 SQL 查询
$rows=$command->queryAll(); // 查询并返回结果中的所有行
$row=$command->queryRow(); // 查询并返回结果中的第一行
$column=$command->queryColumn(); // 查询并返回结果中的第一列
$value=$command->queryScalar(); // 查询并返回结果中第一行的第一个字段
3.获取查询结果
// 重复调用 read() 直到它返回 false
while(($row=$dataReader->read())!==false) { ... }
// 使用 foreach 遍历数据中的每一行
foreach($dataReaderas$row) { ... }
// 一次性提取所有行到一个数组
$rows=$dataReader->readAll();
4.使用事务
try
{
$connection->createCommand($sql1)->execute();
$connection->createCommand($sql2)->execute();
//.... other SQL executions
$transaction->commit();
}
catch(Exception$e) // 如果有一条查询失败,则会抛出异常
{
$transaction->rollBack();
}
5.绑定列
绑定列可以让当前查询结果和一个变量绑定,方便操作。
$dataReader=$connection->createCommand($sql)->query();
// 使用 $username 变量绑定第一列 (username)
$dataReader->bindColumn(1,$username);
// 使用 $email 变量绑定第二列 (email)
$dataReader->bindColumn(2,$email);
while($dataReader->read()!==false)
{
// $username 和 $email 含有当前行中的 username 和 email
}
相关推荐
Yii的DAO还支持数据库事务管理,可以通过`CDbTransaction`类来控制事务的开始、提交和回滚。 ```php // 开始事务 $transaction = $connection->beginTransaction(); try { // 执行一系列操作 $command = $...
$transaction = Yii::$app->db->beginTransaction(); try { // 执行一些数据库操作 // ... if (/* 所有操作成功 */) { $transaction->commit(); } else { $transaction->rollBack(); } } catch (\...
MySQL数据库复制和读写分离是数据库管理中的重要概念和实践,可以有效提升数据库的扩展性和可用性。特别是在高流量的Web应用中,读写分离可以减轻主服务器的压力,提高应用的性能。YII2是一个基于组件的高性能PHP...
yii2-schemadump 从现有数据库生成模式。演示版要求PHP 7.3或更高版本Yii 2.x安装composer require --dev jamband/yii2-schemadump用法在config / console.php中添加以下内容: return [ . . . 'components' => [ . ...
本文实例讲述了Yii实现多数据库主从读写分离的方法。分享给大家供大家参考。具体分析如下: Yii框架数据库多数据库、主从、读写分离 实现,功能描述: 1.实现主从数据库读写分离 主库:写 从库(可多个):读 2.主数据库...
为了更好地管理和跟踪这些变更,YII 2框架提供了一个非常实用的功能——数据库迁移(Migrations)。数据库迁移可以帮助开发者在不影响现有数据的情况下,对数据库结构进行更改。 #### 二、YII 2数据库迁移的基本操作 ...
在大型系统中,数据库的读写操作往往成为性能瓶颈,因此,实现读写分离和分库分表是优化数据库性能的重要手段。本文将深入探讨在Yii框架下如何实现这一目标。 一、读写分离 读写分离的基本思想是将数据库的读操作...
在Yii中,新增数据通常是通过创建一个新的模型对象,设置其属性值,然后调用`save()`方法来完成。例如,在示例中,创建新的`Post`对象并设置`title`和`content`等字段的值,最后调用`save()`保存到数据库。对于更...
本文实例讲述了yii数据库的查询方法。分享给大家供大家参考,具体如下: 这里介绍两种查询方法。一种是直接查询,一种是使用借助criteria实现查询。 复制代码 代码如下:$user=User::model(); 1. 直接查询: $arr=...
$curl = \Yii::$app->curl; $response = $curl->get('http://example.com'); ``` 对于POST请求,可以这样: ```php $data = ['key' => 'value']; $response = $curl->post('http://example.com', $data); ``` 4. *...
yii2-树Yii2 模型的树小部件安装安装此扩展的首选方法是通过 。 要么跑 php composer.phar require --prefer-dist pendalf89/yii2-tree "*"或添加 "pendalf89/yii2-tree": "*"到composer.json文件的 require 部分。...
$db = Yii::$app->db; $sql = $db->createCommand()->getSchema()->export(); $backupFile = time() . '.sql'; file_put_contents($backupFile, $sql); echo "Database backup saved to: $backupFile"; } ``...
Yii框架的数据库缓存是提高应用程序性能的一个重要机制,尤其是在处理大量数据库查询和减少数据库服务器负载方面非常有效。Yii提供了灵活的缓存机制,可以通过组件实现多种缓存策略。本文将详细介绍Yii数据库缓存的...
Yii2备份和还原数据库 数据库备份和还原功能 安装 安装此扩展的首选方法是通过 。 无论运行 php composer.phar require --prefer-dist spanjeta/yii2-backup "*" 或添加 "spanjeta/yii2-backup": "*" 到composer....
yii2-swoole 为赋予 Yii2 框架协程异步能力而生。 后期开发会依赖 去实现功能,相信 Swoft 会是下一代优秀的框架。 此插件基于 swoole (v2.0) 底层实现的协程,改造 Yii2 的核心代码,使开发者无感知,以及在不改动...
yii2评论 Yii2的注释模块。 安装 安装此扩展的首选方法是通过 。 尝试 composer require "ogheo/yii2-comments:*" 或添加 "ogheo/yii2-comments": "*" 到composer.json文件的require部分。 配置 数据库迁移 ...
由于 ActiveRecord 的灵活性,许多计算必须在运行时完成:查找相应的数据库模式,从中导出属性列表,根据模型的rules()确定每个场景的安全属性列表,等等。 在 Yii2 的架构中,大多数这些计算不仅对您的每个 ...
yii2-对话框 Yii Framework 2.0的小部件组件,可轻松配置和初始化弹出通知对话框。 它为本机javascript... 通过覆盖和增强使用yii的data-confirm方法的链接的确认对话框,可以呈现漂亮的对话框。 通过kartik\dialog