How to resolve this issue in real time?
very simple when ever we install the use module in Yii it's giving table prefix like tblusers
solution:-
path: yourapp/protected/config/main.php
goto below line
'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=yourdb',
'emulatePrepare' => true,
'username' => 'yourusername',
'password' => '',
'charset' => 'utf8',
'tablePrefix' => 'tbl_',
),
add tablePrefix end the array :)
very simple when ever we install the use module in Yii it's giving table prefix like tblusers
solution:-
path: yourapp/protected/config/main.php
goto below line
'db'=>array(
'connectionString' => 'mysql:host=localhost;dbname=yourdb',
'emulatePrepare' => true,
'username' => 'yourusername',
'password' => '',
'charset' => 'utf8',
'tablePrefix' => 'tbl_',
),
add tablePrefix end the array :)
No comments:
Post a Comment