ezSQL异常行为

时间:2015-10-07 05:01:55

标签: php mysql ezsql

我正在使用ezSQL进行数据库查询和连接,有时它会提供数据,有时它不返回任何结果。

这是调试代码

Query [3] -- [SELECT * FROM table WHERE `id`=4]
Query Result..

No Results

CODE:

public function select($table, $rows = '*', $where = null,$datatype = 'results') {
        global $db;
        $q = 'SELECT ' . $rows . ' FROM ' . $table;
        if ($join != null) {
            $q .= ' JOIN ' . $join;
        }
        if ($where != null) {
            $q .= ' WHERE ' . $where;
        }
        self::prt_debug("db", $db );
        self::prt_debug("SELECT Query", $q );
        if ($datatype == 'row')
            $results = $db->get_row ( $q );
        else
            $results = $db->get_results ( $q );
        $db->debug();
        return $results;
}

查询非常简单,但有时只提供数据。

任何人都可以有这个想法吗?

我试图在页面启动时使用ob_start()函数,所以如果它清除但不起作用的任何缓存或缓冲区

谢谢,

0 个答案:

没有答案