Yii - 数据库访问



Yii DAO(数据库访问对象)提供了一个访问数据库的 API。它也是其他数据库访问方法(活动记录和查询生成器)的基础。

Yii DAO 支持以下数据库:

  • MySQL
  • MSSQL
  • SQLite
  • MariaDB
  • PostgreSQL
  • ORACLE
  • CUBRID

创建数据库连接

步骤 1 - 要创建数据库连接,您需要创建 yii\db\Connection 类的实例。

$mydb = new yii\db\Connection([
   'dsn' => 'mysql:host=localhost;dbname=mydb',
   'username' => 'username',
   'password' => 'password',
   'charset' => 'utf8',
]);

一种常见的做法是在应用程序组件内部配置数据库连接。例如,在基本应用程序模板中,数据库连接配置位于 config/db.php 文件中,如下代码所示。

<?php
   return [
      'class' => 'yii\db\Connection',
      'dsn' => 'mysql:host = localhost;dbname = helloworld',
      'username' => 'vladimir',
      'password' => '123574896',
      'charset' => 'utf8',
   ];
?>

步骤 2 - 要访问数据库连接,您可以使用此表达式。

Yii::$app->db

要配置数据库连接,您应通过 dsn 属性指定其 DSN(数据源名称)。不同数据库的 DSN 格式有所不同:

  • MySQL、MariaDB - mysql:host = localhost;dbname = mydb

  • PostgreSQL - pgsql:host = localhost;port = 5432;dbname = mydb

  • SQLite - sqlite:/path/to/db/file

  • MS SQL Server(通过 sqlsrv 驱动程序) - sqlsrv:Server = localhost;Database = mydb

  • MS SQL Server(通过 mssql 驱动程序) - mssql:host = localhost;dbname = mydb

  • MS SQL Server(通过 dblib 驱动程序) - dblib:host = localhost;dbname = mydb

  • CUBRID - cubrid:dbname = mydb;host = localhost;port = 33000

  • Oracle - oci:dbname = //127.0.0.1:1521/mydb

为了展示数据库查询的实际操作,我们需要一些数据。

准备数据库

步骤 1 - 创建一个新的数据库。数据库可以通过以下两种方式准备。

  • 在终端中运行 mysql -u root –p

  • 通过 CREATE DATABASE helloworld CHARACTER SET utf8 COLLATE utf8_general_ci; 创建一个新的数据库。

步骤 2 - 在 config/db.php 文件中配置数据库连接。以下配置适用于当前使用的系统。

<?php
   return [
      'class' => 'yii\db\Connection',
      'dsn' => 'mysql:host = localhost;dbname = helloworld',
      'username' => 'vladimir',
      'password' => '12345',
      'charset' => 'utf8',
   ];
?>

步骤 3 - 在根文件夹中 运行 ./yii migrate/create test_table。此命令将创建一个用于管理数据库的数据库迁移。迁移文件应出现在项目根目录的 migrations 文件夹中。

步骤 4 - 以这种方式修改迁移文件(在本例中为 m160106_163154_test_table.php)。

<?php
   use yii\db\Schema;
   use yii\db\Migration;
   class m160106_163154_test_table extends Migration {
      public function safeUp() {
         $this->createTable("user", [
            "id" => Schema::TYPE_PK,
            "name" => Schema::TYPE_STRING,
            "email" => Schema::TYPE_STRING,
         ]);
         $this->batchInsert("user", ["name", "email"], [
            ["User1", "[email protected]"],
            ["User2", "[email protected]"],
            ["User3", "[email protected]"],
            ["User4", "[email protected]"],
            ["User5", "[email protected]"],
            ["User6", "[email protected]"],
            ["User7", "[email protected]"],
            ["User8", "[email protected]"],
            ["User9", "[email protected]"],
            ["User10", "[email protected]"],
            ["User11", "[email protected]"],
         ]);
      }
      public function safeDown() {
         $this->dropTable('user');
      }
   }
?>

上述迁移创建了一个名为 user 的表,包含以下字段:id、name 和 email。它还添加了一些演示用户。

步骤 5 - 在项目根目录中 运行 ./yii migrate 以将迁移应用于数据库。

步骤 6 - 现在,我们需要为 user 表创建一个模型。为了简单起见,我们将使用 Gii 代码生成工具。打开此 url: https://127.0.0.1:8080/index.php?r=gii。然后,单击“模型生成器”标题下的“开始”按钮。填写表名(“user”)和模型类(“MyUser”),单击“预览”按钮,最后单击“生成”按钮。

database Access Preparing DB

MyUser 模型应该出现在 models 目录中。

广告