Custom query execution in cakephp. I have applied below code.
$conn = ConnectionManager::get('default');
$rs = $conn->query('SELECT * FROM customers');
It gives me blank array though customers
table has 20 records.
Please suggest me some solution.
Thanks.