Hi:
I have an issue saving a new record that includes a DateTime column.
My code:
Date tiempo = new Date(System.currentTimeMillis());
BDRondas nuevoRegistroRonda = new BDRondas();
nuevoRegistroRonda.setDuracion(tiempo);
...
Backendless.Data.of(BDRondas.class).save(nuevoRegistroRonda, new AsyncCallback<BDRondas>() {
When I execute it I received the following error message:
code: ‘1110’, message: ‘Column ‘Duracion’ specified twice’, detail: ‘Column ‘Duracion’ specified twice’, extendedData: ‘{}’
Please find below a screenshot including the parameters values:
Thank you in advance for your help
Regards,
Alejandro
PS: Application ID: 02B9EC69-EECD-7DC3-FF4B-E48D8CAA4800