I always run a query at command line if wanting to check the data is loaded, eg:
>smartform (alias to starting mysql with username/ password)
>select scheduled_time, course from daily_races where meeting_date >= CURDATE();
This returns:
+---------------------+-----------+
| scheduled_time | course |
+---------------------+-----------+
| 2020-06-01 13:00:00 | Newcastle |
| 2020-06-01 13:35:00 | Newcastle |
| 2020-06-01 14:10:00 | Newcastle |
| 2020-06-01 14:45:00 | Newcastle |
| 2020-06-01 15:20:00 | Newcastle |
| 2020-06-01 15:55:00 | Newcastle |
| 2020-06-01 16:30:00 | Newcastle |
| 2020-06-01 17:05:00 | Newcastle |
| 2020-06-01 17:40:00 | Newcastle |
| 2020-06-01 18:15:00 | Newcastle |
+---------------------+-----------+
10 rows in set (0.11 sec)