首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

thinkphp3.2在Controller里为何select没有数据

2014-01-19 
thinkphp3.2在Controller里为什么select没有数据?刚学thinkphp,请大家多多指教。class IndexController ext

thinkphp3.2在Controller里为什么select没有数据?
刚学thinkphp,请大家多多指教。
class IndexController extends Controller {
    public function index(){
$Dao = M("Article");
        $articles = $Dao->select();    //用select检索不出数据
//$articles=$Dao->query("select * from think_Article" ); //用query有数据

        $this->assign('articles', $articles);
        // 输出模板
        $this->display();
    }
}

在application里也设置'DB_PREFIX' => 'think_'了。
运行环境:ubuntu、mysql。
为什么用select检索不出数据呢?请大家指教。谢谢。
[解决办法]
$Dao = M("Article");
$articles = $Dao->select();    //用select检索不出数据
echo $Dao->getLastSQL();

热点排行