Closed nickwe3 closed 3 years ago
OK found it, it was looking for sample_data.ATHLETES instead of sample_data.athletes, so the file server/app/Http/Controllers/AthleteController.php need to be changed accordingly.
Hi @nickwe3
Happy to hear that you've fixed your issue, it sounds like this is an issue with case sensitivity.
In Line 32 of server/app/Http/Controllers/AthleteController.php:
$fromSql = " FROM ATHLETES ";
I'm assuming that it is case sensitive, in which case I'll update the line to $fromSql = " FROM athletes ";
.
Thanks for letting me know - hope you enjoy using ag-grid! :)
Hi @nickwe3
Happy to hear that you've fixed your issue, it sounds like this is an issue with case sensitivity.
In Line 32 of server/app/Http/Controllers/AthleteController.php:
$fromSql = " FROM ATHLETES ";
I'm assuming that it is case sensitive, in which case I'll update the line to
$fromSql = " FROM athletes ";
.Thanks for letting me know - hope you enjoy using ag-grid! :)
In fact it's case sensitive, at least on Linux, and now everything is working like a charm after having just done the same modification as you :)
Thanks for letting me know, I didn't know that. Great to hear that everything is working fine now :) Will close the issue as it's solved.
Hello,
I have successfully installed and configured everything on Cent0S and archlinux, mysql table have created and poluated by php artisan, start laravel and the client, I can access the web interface at http://localhost:4200/ but infortunately on both system instead of the data loading into the grid, I'm stuck with a "* Loading"
So I don't understand how could I debug or make some checks, my .env is well populated with DB connection, table athletes has all the data from the json files.
Thanks and Regards,
Nicolas.