Home  >  Article  >  PHP Framework  >  How to connect Yii2 to PostgreSql

How to connect Yii2 to PostgreSql

angryTom
angryTomforward
2020-02-02 21:12:472957browse

This article introduces the method of connecting the Yii2 framework to PostgreSql. It has certain reference value. Now I will share it with you. I hope it will be helpful to you!

How to connect Yii2 to PostgreSql

1. Configure the connection information to connect to postgresql:

$dev = [
    'class'    => 'yii\db\Connection',
    'dsn'      => 'pgsql:host=122.112.182.211;port=8000;dbname=sdk_info',
    'username' => 'dbadmin',
    'password' => 'Styl2018@',
    'charset'  => 'utf8',
//    'emulatePrepare' => true
];
return $dev;

2. In the Yii2 directory, create a new one in the models directory. model:

class TestSdkVsent extends Base
{
    public static function getDb()
    {
        return \Yii::$app->dbDws;
    }
    public static function tableName()
    {
        return 'sdk_info.tb_sdk_vsent'; // TODO: Change the autogenerated stub
    }
    public static function test()
    {
        $find = static::find();
        $result = $find->select('rtt')->limit(1) ->asArray()->one();
        return $result;
    }
}

3. Remarks:

$result = $find->select('rtt')->limit(1)->asArray()->one(); 查询到一条数据返回

Analysis result: ``SELECT * FROM "sdk_info"."tb_sdk_vsent" LIMIT 1

$result = $find->select('rtt')->asArray()->one(); 会查询所有的数据返回一条

Parsing results: SELECT "rtt" FROM "sdk_info"."tb_sdk_vsent"

Recommended related articles and tutorials: yii tutorial

The above is the detailed content of How to connect Yii2 to PostgreSql. For more information, please follow other related articles on the PHP Chinese website!

Statement:
This article is reproduced at:51cto.com. If there is any infringement, please contact admin@php.cn delete