Yii2 and oracle database

Hi everyone.

I have a problem with connecting to oracle database…

my config




 'db'=> [

            'class'=>'\sfedosimov\oci8pdo\Oci8PDO_Connection',

            'dsn' => 'oci:dbname=(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=localhost)(PORT=1521))(CONNECT_DATA=

                                  (SID=xe)));charset=AL32UTF8;',

            'username' => 'name',

            'password' => 'password',

        ],



The connection is maybe okay already, but i don’t know

I have following error




Invalid Configuration – yii\base\InvalidConfigException


The table does not exist: {{%USER}}



Name of my table is USER… {{%USER}} or USER doesn’t work

Where can be a problem ?

Thanks for any help :)

Do you have such table in db?

Keep in mind that Oracle is case sensitive for table/columns name

USER != user != User

Post the code that throw the error