sql >> Database teknologi >  >> RDS >> PostgreSQL

Sådan indstilles standardskema i Yii2

prøv denne variant af db.php for at angive defaultSchema

return [
    'class' => 'yii\db\Connection',
    'dsn' => 'pgsql:host=localhost;dbname=db_name', 
    'username' => 'db_username',
    'password' => 'db_password',
    'charset' => 'utf8',
    'schemaMap' => [
      'pgsql'=> [
        'class'=>'yii\db\pgsql\Schema',
        'defaultSchema' => 'public' //specify your schema here
      ]
    ], // PostgreSQL
];



  1. Oracle bruger eller ignorerer indekseret kolonne afhængigt af formatet to_date(literal)

  2. Forskellen mellem NullIf() og IfNull() i SQLite

  3. Understøtter SQL Server CLR Integration konfigurationsfiler?

  4. Mysqldump mere end én tabel?