>데이터 베이스 >MySQL 튜토리얼 >yii框架之gii创建数据表对应的model类_MySQL

yii框架之gii创建数据表对应的model类_MySQL

WBOY
WBOY원래의
2016-05-31 08:50:021092검색

一、首先是在数据库中建立工程需要的表;

二、然后,配置对应文件:

在工程目录下yiiProject/protected/config/main. php 。在50行定义了db应用组件,下面后一段注释掉了的mysql的 链接 配置项,我们将未注释的db注释掉,然后打开mysql链接代码并填写相关信息即可完成mysql链接配置项。

即,把下面代码

		'db'=>array(			'connectionString' => 'sqlite:'.dirname(__FILE__).'/../data/testdrive.db',		),		// uncomment the following to use a MySQL database/*		'db'=>array(			'connectionString' => 'mysql:host=localhost;dbname=myemail',			'emulatePrepare' => true,			'username' => 'root',			'password' => '123',			'charset' => 'utf8',		),*/

改为:

/*		'db'=>array(			'connectionString' => 'sqlite:'.dirname(__FILE__).'/../data/testdrive.db',		),		*/		// uncomment the following to use a MySQL database		'db'=>array(			'connectionString' => 'mysql:host=localhost;dbname=myemail',			'emulatePrepare' => true,			'username' => 'root',			'password' => '123',			'charset' => 'utf8',		),

三、 在工程目录下yiiblog/protected/config/main. php ,在配置文件的21行,将模块配置里的gii部分去掉注释即可。在红色框里填写一个密码,使用gii的密码。

'modules'=>array(		// uncomment the following to enable the Gii tool				'gii'=>array(			'class'=>'system.gii.GiiModule',			'password'=>'123',		 	// If removed, Gii defaults to localhost only. Edit carefully to taste.			'ipFilters'=>array('127.0.0.1','::1'),		),			),

四、接下来在 浏览器 中访问gii模块即可,访问路径:http://localhost/

yiiProject

/index.php?r=gii,输入红色框中定义的密码即可进入gii模块。脚手架页面的首页显示脚手架提供如下功能:

下面就可以生成对应数据库表的model类和其他模块了。

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.