使用 Zend_Db_Table_Abstract::createRow() 时遇到问题

发布于 2024-10-09 08:56:39 字数 803 浏览 12 评论 0原文

我已经构建了一个扩展 Zend_Db_Table_Abstract 的模型,但我不明白为什么我不能使用 createRow();这是我的代码:

class Model_User extends Zend_Db_Table_Abstract
{
   public function createUser()
   {
       $row = $this->createRow();
       $row->name = 'test';
       $row->save();
   }
}

在我使用的控制器中:

$userModel = new Model_User();
$userModel->createUser();

运行时显示错误

发生错误

应用程序错误

是我在 application.ini 中的设置

resources.db.adapter = "pdo_mysql"
resources.db.params.host = "localhost"
resources.db.params.username = "root"
resources.db.params.password = "pass"
resources.db.params.dbname = "app_db"
resources.db.isDefaultTableAdapter = true

我确信我的用户/密码/数据库名是正确的。

如果您为我指出正确的方向,我将不胜感激。

I have built a model that extends Zend_Db_Table_Abstract and I can't figure out why I can't use createRow(); here is my code:

class Model_User extends Zend_Db_Table_Abstract
{
   public function createUser()
   {
       $row = $this->createRow();
       $row->name = 'test';
       $row->save();
   }
}

and in a controller I use:

$userModel = new Model_User();
$userModel->createUser();

which when run displays an error

An error occurred

Application error

here is my setup in application.ini

resources.db.adapter = "pdo_mysql"
resources.db.params.host = "localhost"
resources.db.params.username = "root"
resources.db.params.password = "pass"
resources.db.params.dbname = "app_db"
resources.db.isDefaultTableAdapter = true

I am sure that my user/pass/dbname is correct.

I would appreciate it if you point me in the right direction.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陪你到最终 2024-10-16 08:56:39

Vika 的提示是正确的,尽管您应该将以下所有内容添加到 app.ini 文件的开发部分

phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
resources.frontController.params.displayExceptions = 1

然后您(和我们)将获得有关问题所在的更多信息

Vika's hint is correct though you should add all the following to the development section of your app.ini file

phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
resources.frontController.params.displayExceptions = 1

Then you (and we) will get much more information about what's wrong

别靠近我心 2024-10-16 08:56:39

确保您的 ErrorController 类具有显示错误的代码。如果您删除显示Exception的代码,那么您将永远不知道出了什么问题。

Make sure that your ErrorController class has code to show you the errors. If you remove the code which displays the Exception then you'll never know what is wrong.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文