Skip to content

Commit

Permalink
Merge pull request #73 from efcor/master
Browse files Browse the repository at this point in the history
make charset configurable via env variable
  • Loading branch information
efcor authored Sep 10, 2024
2 parents 1967077 + a39b541 commit 830e362
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/config/oracledb.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
'database' => env('DB_DATABASE', ''),
'username' => env('DB_USERNAME', ''),
'password' => env('DB_PASSWORD', ''),
'charset' => 'WE8ISO8859P1',
'charset' => env('DB_CHARSET', 'WE8ISO8859P1'),
'prefix' => '',
'quoting' => false,
'date_format' => env('DB_DATE_FORMAT', 'Y-m-d H:i:s'),
Expand Down

0 comments on commit 830e362

Please sign in to comment.