当扩展 Zend_Db_Table_Abstract 创建一个连接时,它会使 MySQL 崩溃

发布于 2024-12-05 17:43:25 字数 1104 浏览 1 评论 0原文

我想了解为什么它可以完美地工作而没有问题。

$this->db   =   Zend_Db_Table_Abstract::getDefaultAdapter();

   public function getMessages()
    {

        $select = $this->db->select();
        $select
            ->from('Mail_Text', '*')
            ->join(
                array('Mail' => 'Mail'),
                'Mail.id = Mail_Text.parent_id', '*'
                );
        return $this->db->fetchAll($select);
          }

现在,如果我通过扩展 Zend_Db_Table_Abstract 来做到这一点,

class Mail_Model_Text extends Zend_Db_Table_Abstract
{

        protected $_name = 'Mail_Text';
        public function fetchMessges(){
        $select = $this->select();
        $select->setIntegrityCheck(false)
            ->from($this->_name, '*')
            ->join(
                array('Mail' => 'Mail'),
                'Mail.id = Mail_Text.parent_id', '*'
                );
        return $this->fetchAll($select);

}
}

这会导致 MySql 崩溃,我想将代码分开,但我可以连接这些表。所有单一选择和更新查询都工作完美。我在网上进行了研究,似乎无法找到这个难题的解决方案。任何对他的帮助都会非常感谢。

I want to understand why this works perfect with out a problem.

$this->db   =   Zend_Db_Table_Abstract::getDefaultAdapter();

   public function getMessages()
    {

        $select = $this->db->select();
        $select
            ->from('Mail_Text', '*')
            ->join(
                array('Mail' => 'Mail'),
                'Mail.id = Mail_Text.parent_id', '*'
                );
        return $this->db->fetchAll($select);
          }

Now if I do this by extending Zend_Db_Table_Abstract

class Mail_Model_Text extends Zend_Db_Table_Abstract
{

        protected $_name = 'Mail_Text';
        public function fetchMessges(){
        $select = $this->select();
        $select->setIntegrityCheck(false)
            ->from($this->_name, '*')
            ->join(
                array('Mail' => 'Mail'),
                'Mail.id = Mail_Text.parent_id', '*'
                );
        return $this->fetchAll($select);

}
}

This crashes MySql I wanted to keep the code separate but I can join theses tables. All the Single select and updates query's work perfect. I have research all over the net and can't seem to find the solution to this puzzle. Any Help to his would be great Thanks in advance.

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

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

发布评论

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

评论(1

烟雨凡馨 2024-12-12 17:43:25

您不需要 from() 语句或需要将表别名为相同名称:

class Mail_Model_Text extends Zend_Db_Table_Abstract
{
受保护的$_name = 'Mail_Text';

public function fetchMessges()
{
    $select = $this->select();
    $select->setIntegrityCheck(false)
        ->join('Mail', 'Mail.id = Mail_Text.parent_id');

    return $this->fetchAll($select);
}

另外,请确保

您已正确对表建立索引。

You don't need the from() statement or need to alias the table to the same name:

class Mail_Model_Text extends Zend_Db_Table_Abstract
{
protected $_name = 'Mail_Text';

public function fetchMessges()
{
    $select = $this->select();
    $select->setIntegrityCheck(false)
        ->join('Mail', 'Mail.id = Mail_Text.parent_id');

    return $this->fetchAll($select);
}

}

Also, ensure that you have correctly indexed your tables.

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