Hi.
I have a problem working with oracle, I've got everything running but the charset. My config looks like this:
'orcdatabase' => array( 'dbname' => '(DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.X.XX)(PORT = 1521)))(CONNECT_DATA = (SERVICE_NAME = xe)))', 'username' => 'user', 'password' => 'password', 'options' => [PDO::ATTR_CASE => PDO::CASE_LOWER, PDO::ATTR_PERSISTENT => TRUE], ),
And it works. If I add the option (right below password, as seen here https://forum.phalcon.io/discussion/378/oracle-database-connection-error)
'charset' => 'AL32UTF8',
Or
'charset' => 'UTF8',
The app immeaditely breaks, and nothing gets written in the error log. I checked the oracle database and the charset is set to AL32UTF8 and supports spanish characters
Any help will be much appreciated
Thanks.
Ronald