我正在使用 ezSQL 进行数据库查询和连接,有时它会提供数据,有时它不会返回任何结果。
这是调试代码
Query [3] -- [SELECT * FROM table WHERE `id`=4]
Query Result..
No Results
代码:
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() 函数,所以如果有任何缓存或缓冲区它会清除但不起作用
谢谢,