1

我正在尝试使用 Yii 进行迁移并在up()方法中创建新表。只要我不添加该ENGINE=InnoDB子句,它就可以正常工作。在那种情况下 - 它给了我一个错误near ENGINE

public function up()
{
    $this->createTable('tbl_project', array(
        'id' => 'pk',
        'name' => 'string NOT NULL',
        'description' => 'text NOT NULL',
        'create_time' => 'datetime DEFAULT NULL',
        'create_user_id' => 'int(11) DEFAULT NULL',
        'update_time' => 'datetime DEFAULT NULL',
        'update_user_id' => 'int(11) DEFAULT NULL',
    ), 'ENGINE=InnoDB');
}

我的 Yii 版本是 1.1.12。PHP 5.4.3,MySQL 5.5.24。

那是一些 Yii 错误吗?

编辑(yii 错误描述):

*** applying m130208_133533_create_table_project
> create table tbl_project ...exception 'CDbException' with message 'CDbComm
and failed to execute the SQL statement: CDbCommand failed to prepare the SQL st
atement: SQLSTATE[HY000]: General error: 1 near "engine": syntax error. The SQL
statement executed was: CREATE TABLE 'tbl_project' (
    "id" integer PRIMARY KEY AUTOINCREMENT NOT NULL,
    "name" varchar(255) NOT NULL,
    "description" text NOT NULL,
    "create_time" datetime DEFAULT NULL,
    "create_user_id" int(11) DEFAULT NULL,
    "update_time" datetime DEFAULT NULL,
    "update_user_id" int(11) DEFAULT NULL
) engine = InnoDB' in C:\wamp\yii\framework\db\CDbCommand.php:357
4

4 回答 4

8

我有同样的问题,通过检查console.php和main.php中的数据库配置是否相同来解决

i.e 'db'=>array(
        'connectionString' => 'mysql:host=localhost;dbname=databasename',
        'emulatePrepare' => true,
        'username' => 'root',
        'password' => 'ur password',
        'charset' => 'utf8',
    ),

并注释两个文件中的 sqlite 行

于 2013-02-24T18:40:11.130 回答
4

使用“protected\yiic\migrate”,作为一个控制台命令,使用 protected\config\console.php,所以它的“db”组件应该被正确配置(因为已配置 protected\config\main.php)。如果您收到 InnoDB 错误,那么您可能仍然配置了 SQLite。

于 2014-06-08T20:20:53.733 回答
0

尝试:

$this->createTable('tbl_project', array(
        'id' => 'pk',
        'name' => 'string NOT NULL',
        'description' => 'text NOT NULL',
        'create_time' => 'datetime DEFAULT NULL',
        'create_user_id' => 'int(11) DEFAULT NULL',
        'update_time' => 'datetime DEFAULT NULL',
        'update_user_id' => 'int(11) DEFAULT NULL',
    ), 
    'engine = InnoDB'
);

如果它不起作用,那么向我们展示 MySql 错误

于 2013-02-08T15:11:07.487 回答
0

另一种方法是包含在 .env 文件中:

DB_ENGINE=InnoDB

于 2018-10-26T12:50:38.853 回答