3

我正在关注:http: //framework.zend.com/manual/en/learning.quickstart.create-model.html

不断地碰壁问题。我目前的错误是以下错误:

    An error occurred

Application error

Exception information:

Message: Primary key column(s) (id) are not columns in this table ()

Stack trace:

#0 C:\wamp\www\zendtest\quickstart\library\Zend\Db\Table\Abstract.php(982): Zend_Db_Table_Abstract->_setupPrimaryKey()
#1 C:\wamp\www\zendtest\quickstart\library\Zend\Db\Table\Select.php(100): Zend_Db_Table_Abstract->info()
#2 C:\wamp\www\zendtest\quickstart\library\Zend\Db\Table\Select.php(78): Zend_Db_Table_Select->setTable(Object(Application_Model_DbTable_Guestbook))
#3 C:\wamp\www\zendtest\quickstart\library\Zend\Db\Table\Abstract.php(1018): Zend_Db_Table_Select->__construct(Object(Application_Model_DbTable_Guestbook))
#4 C:\wamp\www\zendtest\quickstart\library\Zend\Db\Table\Abstract.php(1326): Zend_Db_Table_Abstract->select()
#5 C:\wamp\www\zendtest\quickstart\application\models\GuestbookMapper.php(58): Zend_Db_Table_Abstract->fetchAll()
#6 C:\wamp\www\zendtest\quickstart\application\controllers\GuestbookController.php(14): Application_Model_GuestbookMapper->fetchAll()
#7 C:\wamp\www\zendtest\quickstart\library\Zend\Controller\Action.php(516): GuestbookController->indexAction()
#8 C:\wamp\www\zendtest\quickstart\library\Zend\Controller\Dispatcher\Standard.php(295): Zend_Controller_Action->dispatch('indexAction')
#9 C:\wamp\www\zendtest\quickstart\library\Zend\Controller\Front.php(954): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_Http))
#10 C:\wamp\www\zendtest\quickstart\library\Zend\Application\Bootstrap\Bootstrap.php(97): Zend_Controller_Front->dispatch()
#11 C:\wamp\www\zendtest\quickstart\library\Zend\Application.php(366): Zend_Application_Bootstrap_Bootstrap->run()
#12 C:\wamp\www\zendtest\quickstart\public\index.php(26): Zend_Application->run()
#13 {main}  
Request Parameters:

array (
  'controller' => 'guestbook',
  'action' => 'index',
  'module' => 'default',
)  

但我确信我的表有一个表的主键 ID:

CREATE TABLE guestbook (
    id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT,
    email VARCHAR(32) NOT NULL DEFAULT 'noemail@test.com',
    comment TEXT NULL,
    created DATETIME NOT NULL
);

CREATE INDEX "id" ON "guestbook" ("id");

不明白为什么会出错。

我怎样才能看到它是否甚至选择了正确的数据库

4

4 回答 4

1

Zend_Db_Table_Abstract包含一个名为的受保护属性_primary,默认为id.

它假定这id是表的主键并且是一个序列(自动增量)。

由于你的表定义说这id是一个主键,你应该去掉第二个在id列上添加索引的 SQL 命令。由于它已经是主键,因此它是一个索引。

删除表并使用您在问题中的 create table 语句重新创建它,只是不要这样做CREATE INDEX。之后,您应该能够继续。

于 2012-08-14T20:42:56.377 回答
0

我认为您的 SQL 架构不正确。尝试像这样创建具有主 kyy 的表:

CREATE TABLE guestbook (
    id INTEGER NOT NULL AUTO_INCREMENT,
    email VARCHAR(32) NOT NULL DEFAULT 'noemail@test.com',
    comment TEXT NULL,
    created DATETIME NOT NULL,
    PRIMARY KEY (id)
);
于 2012-08-15T06:39:50.030 回答
0

此错误可能是由(意外)使用md5(null)作为缓存 ID 引起的。或任何其他习惯值,例如 1、0、真、假。但是,在这种情况下,null 很可能是罪魁祸首,因为它可能是由未定义的变量产生的。

修复可能很简单:

    $cache = Zend_Registry::get('cache');
    $cache->remove(md5(null));
于 2014-02-04T15:33:46.677 回答
0

我遇到过同样的问题。问题是数据库是在 guestbook-dev.db 而不是 guestbook.db 中创建的。您可以通过查看此文件来检查它。解决方案是将 scripts/load.sqlite.php 从更改
defined('APPLICATION_ENV') || define('APPLICATION_ENV', (null === $env) ? 'development' : $env);
为:
defined('APPLICATION_ENV') || define('APPLICATION_ENV', (null === $env) ? 'production' : $env);
,当然,再次运行脚本。

于 2014-12-13T09:18:10.263 回答