I have successfully implemented Ignited-Datatables. However, while searching with database when typing \"non-latin\" characters like \"İ,ş,ğ,..\"
POST http://v
I met a similar error when LIKE was applied to the DateTime column. So now, instead of using simple date_col LIKE '2019%' I use CAST(date_col AS CHAR) LIKE '2019%'.
LIKE
DateTime
date_col LIKE '2019%'
CAST(date_col AS CHAR) LIKE '2019%'
The solution was found on the official MySQL bugs website.