0

我在使用以下代码获取数据库查询时遇到了一些麻烦。我是第一次使用类甚至 PDO 进行连接,所以不知道出了什么问题。据你所知,我不是那么熟练,但我正在努力学习课程,所以如果你能告诉我是否有什么可以改进的,我将不胜感激。

错误消息:致命错误:在 C:\ pat \ to\ class.php 的第 72 行调用非对象上的成员函数 query()

<?php

    // get database connection
    private static function _db_connect() {

        try {

            $db_con = new PDO('mysql:host='.$db_host.';dbname='.$db_name, $db_user, $db_pass);
            $db_con = null;

        } catch (PDOException $e) {

            print "Error!" . $e->getMessage(). "<br/>";

        }

    }


    // get database tables prefix
    public static function prefix() {

        $prefix = 'tb_'; // once done will be set dynamically

        return $prefix;
    }


    // get all users from db
    public static function get_users() {

        $db = self::_db_connect();
        $prf = self::prefix();

        $st = $db->query('SELECT * FROM '.$prf.'users'); // this is the line #72 where error

        while($row = $st->fetch(PDO::FETCH_ASSOC))
         $rs[] = $row;

        return count($rs) ? $rs : array();

    }    


?>

编辑:我在这里删除 null 并返回 PDO 对象

    // get database connection
    private static function _db_connect() {

        try {

            $db_con = new PDO('mysql:host='.$db_host.';dbname='.$db_name, $db_user, $db_pass);
            return $db_con;

        } catch (PDOException $e) {

            print "Error!" . $e->getMessage(). "<br/>";

        }

    }


    // get database tables prefix
    public static function prefix() {

        $prefix = 'tb_'; // once done will be set dynamically

        return $prefix;
    }


    // get all users from db
    public static function get_users() {

        $db = self::_db_connect();
        $prf = self::prefix();

        $st = $db->query('SELECT * FROM '.$prf.'users'); // this is the line #72 where error

        while($row = $st->fetch(PDO::FETCH_ASSOC))
         $rs[] = $row;

        return count($rs) ? $rs : array();

    }    


?>
4

1 回答 1

2

你没有从你的db_connect方法返回任何东西,所以它NULL默认返回。本质上,您正在尝试调用 ,NULL->query()这显然没有意义。

修改db_connect以返回它创建的 PDO 对象。

于 2013-01-19T07:09:36.263 回答