We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

How to save the date in oracle?

I need to save the date in oracle with 'DD / MM / YYYY' format

edited Apr '16

Have you tried this: https://docs.phalcon.io/en/latest/api/Phalcon_Db_RawValue.html

$subscriber = new Subscribers();
$subscriber->createdAt = new \Phalcon\Db\RawValue('SYSDATE');
$subscriber->save();