i'm having some problems with mysql stricted mode... the methods works fine in my laptop (ubuntu + mysql server + php5) but not in my server (debian + mysql + php5).
In debian when i make a "add" i only see the "clock" rounding.... i can note the problem is because Grocery don't make a insert with all the "campos",
example
table person(id,dni,name,age) and i put $crud->fields(dni,name) grocery do insert into person(id,dni,name) values(x,y,z) but mysql fails because age is not defined in the insert stament.
I feel is a problem in the mode of mysql... but i don't know how i can change it.