我坚持的简单问题:
这是我的活动记录查询:
public function get_org()
{
return $this->db
->get('organizations')
->row();
}
这仅返回数据库中的第一行。如果我摆脱->row();
它会返回这个奇怪的位:
object(CI_DB_mysql_result)#17 (8) {
["conn_id"]=>
resource(8) of type (mysql link persistent)
["result_id"]=>
resource(12) of type (mysql result)
["result_array"]=>
array(0) {
}
["result_object"]=>
array(0) {
}
["custom_result_object"]=>
array(0) {
}
["current_row"]=>
int(0)
["num_rows"]=>
int(2)
["row_data"]=>
NULL
}
奇怪的是,完全相同的查询在我的代码中针对不同表的其他地方完美运行。
建议?