Phpmyadmin çalıştırdığınızda beklendiği gibi aşağıdaki sorgu bir satır döndürür.
SELECT units . * , locations . *
FROM units, locations
WHERE units.id = '1'
AND units.location_id = locations.id
LIMIT 0 , 30
Ama Kohana 3 bunu yapmaya çalıştığınızda:
$unit = DB::select('units.*', 'locations.*')
->from('units', 'locations')
->where('units.id', '=', $id)->and_where('units.location_id', '=', 'locations.id')
->execute()->as_array();
var_dump($unit);
Bu yazdırır
array (0) {}
Ben yanlış ne yapıyorum?