SQL语句不正确(调试)

时间:2017-06-13 01:47:49

标签: php mysql debugging

我的controller.php包含与数据库的连接,我使用以下代码从我的数据库访问信息:

function getWidgets(){  
    $widgetQ = "SELECT * FROM tblfinal WHERE Type = 'Widget'";
    global $myPdo;
    $myCommand = $myPdo->prepare($widgetQ);
    $myCommand->execute();
    return $myCommand;
}

但是,它似乎不喜欢我的SQL语句,并且给出了以下错误:

Fatal error: Call to a member function prepare() on null on line 11

我认为这意味着我的SQL语句实际上并没有从我的数据库中提取任何内容。

任何提示?

0 个答案:

没有答案