Integration doctrine to codeigniter 4 |
![]() (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,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 ]; |
Messages In This Thread |
Integration doctrine to codeigniter 4 - by maky - 06-09-2018, 12:51 PM
RE: Integration doctrine to codeigniter 4 - by ciadmin - 06-09-2018, 12:53 PM
RE: Integration doctrine to codeigniter 4 - by maky - 06-09-2018, 12:59 PM
RE: Integration doctrine to codeigniter 4 - by ciadmin - 06-09-2018, 02:29 PM
RE: Integration doctrine to codeigniter 4 - by sv3tli0 - 06-10-2018, 12:28 AM
RE: Integration doctrine to codeigniter 4 - by InsiteFX - 06-10-2018, 05:06 AM
RE: Integration doctrine to codeigniter 4 - by paolo.veggi - 05-14-2019, 12:38 PM
RE: Integration doctrine to codeigniter 4 - by ufhy - 04-11-2020, 05:59 AM
RE: Integration doctrine to codeigniter 4 - by daycry - 05-11-2021, 05:43 AM
RE: Integration doctrine to codeigniter 4 - by b126 - 10-28-2021, 01:17 PM
RE: Integration doctrine to codeigniter 4 - by daycry - 02-09-2022, 08:35 AM
|