Hello,
Im using Phalcon ORM to get data from my MySQL database. For some reason im getting error :
Very simple query looks like this:
$cars = Cars::find();
And this is the error i got.
{
"status": "error",
"http_code": 500,
"message": "The index does not exist in the cursor",
"data": null
}
For some reason, there is no error when i have low number of data in my database ... etc. 10 cars .. This error come when I import more data in database .. I fixed it atm with setting limits on my Query on 50 cars and its working .. But is this a normal solution or there is a bether one?