Skip to content
Advertisement

Gii model generator error – Table does not exist – Yii framework and SQL Server 2000

The main configuration of the file ( main.php ) is as follows:

'class'=>'CDbConnection',
'connectionString'=>'mssql:host=127.0.0.1;dbname=TestSQL'

I can connect to the database successfully, but when generating a model from Yii Code Generator it tells me that the table does not exist.

Advertisement

Answer

Table exists? Gii generates a model based on table. First you need to create a table. If you use console version gii, then to need manage console.php config.

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement