我现在正在使用yii框架。创建了一个项目名称 - " yii"。 在那个项目中我有一个演示文件夹,其中第一个
yii/demo/first
在我创建的那个文件夹中
yii/demo/first/
->protected->config->main.php
->controller->SiteController.php
->view->site->view.php
我还放置一个屏幕截图以显示在上面..
在主文件中,我已经放置了连接字符串,如屏幕截图所示
我还创建了数据库名称" student"在mysql中
当我运行这个网站时,我得到的错误就像
我已经将连接字符串显示仍然显示错误。
如果上面的代码中有任何错误请告诉我..
答案 0 :(得分:0)
您可以在main.php
内的components
文件中试用此代码。
<强>保护/配置/ main.php 强>
'components' => array(
'db'=>array(
// Add hostname, port number, dbnanme
'connectionString' => 'mysql:host=hostname;port=5432;dbname=dname',
'emulatePrepare' => true,
'username' => "username", // Add db Username
'password' => "password", // Add Db Password
'charset' => 'utf8',
'schemaCachingDuration' => 3600,
),
),