I need to save the date in oracle with 'DD / MM / YYYY' format
Have you tried this: https://docs.phalcon.io/en/latest/api/Phalcon_Db_RawValue.html
https://docs.phalcon.io/en/latest/api/Phalcon_Db_RawValue.html
$subscriber = new Subscribers(); $subscriber->createdAt = new \Phalcon\Db\RawValue('SYSDATE'); $subscriber->save();