PHPackages                             gabrielapg/cakephp-oracle - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. gabrielapg/cakephp-oracle

ActiveLibrary

gabrielapg/cakephp-oracle
=========================

Package for connection package for connecting to Oracle

012PHPCI failing

Since Mar 1Pushed 5y ago1 watchersCompare

[ Source](https://github.com/GabrielApG/cakephp-oracle)[ Packagist](https://packagist.org/packages/gabrielapg/cakephp-oracle)[ RSS](/packages/gabrielapg-cakephp-oracle/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependenciesVersions (1)Used By (0)

This Package is Fork
====================

[](#this-package-is-fork)

This package is a fork of the project originally developed by: [snelg/cakephp3-oracle](https://github.com/snelg/cakephp-3-oracle)

Oracle Datasource for CakePHP 3.x
=================================

[](#oracle-datasource-for-cakephp-3x)

This is an alpha version of an Oracle Datasource for CakePHP 3.0. Currently the only functionality is basic data reading; Inserting, deleting, and updating have only been tested minimally.

Installing via composer
-----------------------

[](#installing-via-composer)

Install into your project using [composer](http://getcomposer.org). For existing applications you can add the following to your composer.json file:

```
"require": {
    "gabrielapg/cakephp-oracle": "~1.0"
}

```

And run `php composer.phar update`

Defining a connection
---------------------

[](#defining-a-connection)

Sample connection info:

```
// in config/app.php
    'Datasources' => [
        // other datasources
        'my_oracle_db' => [
            'className' => 'Cake\Database\Connection',
            'driver' => 'Cake\Oracle\Driver\Oracle',
            /* 'host' => '', //Usually unused for Oracle connections */
            'username' => 'you know what goes here',
            'password' => 'and here',
            'database' => 'TNS entry name or full conn string, e.g. (DESCRIPTION=(ADDRESS_LIST=( [...] )))',
            'schema' => 'SCHEMA_NAME', //The schema that owns the tables, not necessarily your login schema
        ],
    ]
```

If your data tables are owned by a different schema than your login user, then make sure you put the table-owning schema name in the "schema" field instead of your login schema.

If you want to access data from multiple schemas, then you do *not* need multiple datasources. Instead, you can specify the schema in a Table's "initialize" function:

```
class UsersTable extends Table
{
    public function initialize(array $config)
    {
        $this->table('some_other_schema.users');
    }
}
```

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity30

Early-stage or recently created project

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/cce51848f766744f96fc76381dada168718f3e0a5559584afcbeaab67c73d609?d=identicon)[GabrielApG](/maintainers/GabrielApG)

---

Top Contributors

[![GabrielApG](https://avatars.githubusercontent.com/u/7422945?v=4)](https://github.com/GabrielApG "GabrielApG (3 commits)")

### Embed Badge

![Health badge](/badges/gabrielapg-cakephp-oracle/health.svg)

```
[![Health](https://phpackages.com/badges/gabrielapg-cakephp-oracle/health.svg)](https://phpackages.com/packages/gabrielapg-cakephp-oracle)
```

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
