Yii資料庫存取(MySQL,MSSQL,SQLite,MariaDB,PostgreSQL,ORACLE)


Yii DAO(資料庫存取物件)提供了存取資料庫的API。Yii可存取資料庫(MySQL,MSSQL,SQLite,MariaDB,PostgreSQL,ORACLE)。它也可作為其他資料庫存取方法的基礎:活動記錄和查詢生成器。
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 (via sqlsrv driver) ? sqlsrv:Server = localhost;Database = mydb

  • MS SQL Server (via mssql driver) ? mssql:host = localhost;dbname = mydb

  • MS SQL Server (via dblib driver) ? dblib:host = localhost;dbname = mydb

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

  • Oracle ? oci:dbname = //localhost:1521/mydb

要在動作中使用資料庫查詢操作,我們需要準備一些資料。

準備資料庫

第1步 - 建立一個新的資料庫。資料庫可以通過以下兩種方式進行。
  • 在終端執行 mysql -u root –p

  • 登入資料後,通過執行 CREATE DATABASE mystudy CHARACTER SET utf8 COLLATE utf8_general_ci; 建立一個新的資料庫;

第2步 - 在 config/db.php 檔案中組態資料庫連線。下面的組態可根據自己的實際情況組態。
<?php
   return [
      'class' => 'yii\db\Connection',
      'dsn' => 'mysql:host = localhost;dbname = mystudy',
      'username' => 'root',
      'password' => '',
      'charset' => 'utf8',
   ];
?>

第3步 - 在專案根檔案夾執行:yii migrate/create test_table 。此命令將用於建立管理資料庫資料庫遷移。 migrations檔案會出現在專案的根的 migrations 檔案夾中。
Yii數據庫訪問

第4步 - 修改遷移檔案(在本範例中生成的是:m160529_014611_test_table.php),並使用以下這些程式碼。
<?php
   use yii\db\Schema;
   use yii\db\Migration;
   class m160529_014611_test_table extends Migration {
      public function up() {
         $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 down() {
         //$this->dropTable('user');
      }
   }
?>
上述遷移建立使用者表,它包含了以下這些欄位:id, name, 和 email。它還增加了一些演示使用者帳號。
第5步 - 在專案的根目錄內執行: yii migrate  來遷移應用到資料庫。執行結果如下圖所示:

第6步-現在,我們需要為user表建立模型。為了簡便起見,我們將使用GII程式碼生成工具。在瀏覽器中開啟 url: http://localhost:8080/index.php?r=gii 。
然後,點選 「Model generator」 下的 「Start」按鈕。 填寫表名(「user」)和模型類(「MyUser」),單擊「Preview」按鈕,最後點選 「Generate」 按鈕。



MyUser 檔案憶經生成在 models 目錄。