docker-oracle-ee-11g icon indicating copy to clipboard operation
docker-oracle-ee-11g copied to clipboard

php connect oracle ee 11g

Open g3n1k opened this issue 6 years ago • 0 comments

using codeigniter v3 php framework with xe, simply declare hostname

'hostname' => '192.168.100.5:1521/xe',

switch to ee must put the whole string in oci_connect as hostname

'hostname' => '(DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.100.5)(PORT = 1521)) (CONNECT_DATA = (SERVICE_NAME = EE.oracle.docker) (SID = EE)))',

g3n1k avatar Feb 20 '19 03:02 g3n1k