Welcome Guest, Not a member yet? Register   Sign In
Integration doctrine to codeigniter 4
#10
Thumbs Up 
(This post was last modified: 10-29-2021, 01:06 AM by b126. Edit Reason: added Oracle section )

(05-11-2021, 05:43 AM)daycry Wrote: Hi,

This is my integration vendor for doctrine.

https://github.com/daycry/doctrine
Hi Daycry, 

I just would like to thank you here since it works PERFECTLY !

I remember that the integration of Doctrine with CI3 was a nightmare for me some years ago...
but your integration with CI4 is super smooth and to the point. Easy install, easy config, Excellent job! ?✨

I really recommend it. Thanks again.

For info, I run it out of the box against a Microsoft SQL Server with the native "SQLSRV" driver provided by Code Igniter. 

As the Oracle OCI driver is not yet available at Code Igniter, I am using the PDO_OCI one, but then you need to add some hook in Doctrine.php

        $connectionOptions = [
            'driver'  => 'pdo_oci',
            'user'    => 'myschema',
            'password' => 'mypwd',
            'host'    => 'myserver',
            'dbname'  => 'myschema',
            'charset'  => 'UTF8',
            'servicename'  => 'myssid',
            'port'    => 1521
        ];
Reply


Messages In This Thread
Integration doctrine to codeigniter 4 - by maky - 06-09-2018, 12:51 PM
RE: Integration doctrine to codeigniter 4 - by b126 - 10-28-2021, 01:17 PM



Theme © iAndrew 2016 - Forum software by © MyBB