如何在我的视图中在Codeigniter中显示adodb数据?

时间:2010-09-16 21:24:11

标签: codeigniter adodb

我在codeigniter的模型中有这段代码:

<?php
class User_model extends Model {

    function User_model()
    {
        parent::Model();
    }
    function get_data()
    {
        $pages = false;

        // Get the pages from the database using adodb if needed
        $this->adodb->connect();

        $recordSet = $this->adodb->execute('SELECT id, genreID, artist, albumName FROM album' );
        if ( ! $recordSet )
        {
            log_message( 'error', 'Error connecting to the database' );
            log_message( 'debug', $this->adodb->getErrorMsg());
        }
        else
        {
            unset( $this->pages );
            while (!$recordSet->EOF)
            {
                $pages[] = array(
                    'id'    => $recordSet->fields[0],
                    'genreID'    => $recordSet->fields[1],
                    'artist'    => $recordSet->fields[2],
                    'albumName'    => $recordSet->fields[3]
                );

                $recordSet->MoveNext();
            }
            $this->pages = $pages;
        }

        $this->adodb->disconnect();

    } 
}
?>

我在控制器中有这个:

<?php

    class Welcome extends Controller {

        function Welcome()
        {
            parent::Controller();   
        }

        function index()
        {
            //
            $this->load->model('User_model');
            $data['query'] = $this->User_model->get_data();
            $this->load->view('welcome_message',$data);
        }
    }

我不能做的是将我的模型结果放到我的视野中。没有result()对象因为我使用了adodb所以这个:

<?php foreach($query->result() as $row): ?>
<p>
    <?=$row->albumName;?>
</p>
<?php endforeach; ?>

给我一​​个错误。

我在视图中放置了什么来获取模型的查询结果。我知道模型有效,因为我可以回显$ recordSet-&gt; fields [3];从模型中看到专辑名称。

感谢您的帮助。

编辑:我不明白为什么我的视图中的get_data()调用没有返回任何内容。

1 个答案:

答案 0 :(得分:0)

对于一个你没有从get_data返回任何东西,这将导致$ query为null。此外,您不应该在视图中执行查询,因为视图内容不应该处理数据层操作,您也已经与数据库断开连接。