Database extension for DM ¶
A database extension for DM database
Installation ¶
The preferred way to install this extension is through composer.
Either run
php composer.phar require --prefer-dist luguohuakai/yii2-dm "*"
or add
"luguohuakai/yii2-dm": "*"
to the require section of your composer.json
file.
Usage ¶
Once the extension is installed, simply use it in your code by :
'components' => [
'db' => [
'class' => 'luguohuakai\db\dm\Connection',
'dsn' => 'dm:host=localhost:xxx;schema=xxx',
'username' => 'SYSDBA',
'password' => 'SYSDBA',
]
]
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.