I would be grateful if can someone tell me where can I find the MySql griddemo database. I am trying to implement the application in Laravel but I get the message error :
Couldn't execute query. Table 'griddemo.clients' doesn't exist - SELECT * FROM clients WHERE 1=1 LIMIT 1 OFFSET 0
Thanks a lot
1 Answers
This database is defined in config.php in root directory of package and you can review where you placed this config in laravel. Another location would be the constructor ‘ new jqgrid($db_conf) ‘ as this array of database config is passed to it.
It is just a demo database and in your application, it should be replaced with your working databsae.
Your Answer