Revision #11 has been created by lenovo on Sep 19, 2019, 1:19:31 AM with the memo:
content formating
« previous (#10) next (#12) »
Changes
Title
unchanged
change default date format in oracle
Category
unchanged
How-tos
Yii version
unchanged
2.0
Tags
unchanged
database
Content
changed
[...]
```
ALTER SESSION SET NLS_DATE_FORMAT=...
```
Add this script inside your database connection file
```
// Schema cache options (for production environment)
//'enableSchemaCache' => true,[...]
$event->sender->createCommand("ALTER SESSION SET NLS_DATE_FORMAT='DD-MM-YYYY hh24:mi:ss'")->execute();
}
```