PHPackages                             felixarenas/adodbconect - 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. [Database &amp; ORM](/categories/database)
4. /
5. felixarenas/adodbconect

ActiveLibrary[Database &amp; ORM](/categories/database)

felixarenas/adodbconect
=======================

Facilitates the use of adodb php in laravel

v0.2.19(5y ago)0109MITPHPPHP &gt;=7.0.0CI failing

Since Feb 21Pushed 5y ago1 watchersCompare

[ Source](https://github.com/felixarenas/adodbconect)[ Packagist](https://packagist.org/packages/felixarenas/adodbconect)[ RSS](/packages/felixarenas-adodbconect/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (7)Versions (23)Used By (0)

adodbconect
===========

[](#adodbconect)

ADODBCONECT Facilitates the use of adodb php in laravel

- [README.md](README.md)
- [CHANGELOG.md](CHANGELOG.md)
- [LICENSE.md](LICENSE.md)
- [composer.json](composer.json)

Install
-------

[](#install)

Via Composer

```
$ composer require felixarenas/adodbconect
```

Providers
---------

[](#providers)

```
'providers' => [
    farenas\AdodbConect\Providers\AdodbConectServiceProvider::class,
    Yajra\Oci8\Oci8ServiceProvider::class,
]
```

Aliases
-------

[](#aliases)

```
'aliases' => [
    'AdodbConect' => farenas\AdodbConect\Facades\AdodbConectFacade::class,
]
```

Publish
-------

[](#publish)

```
php artisan vendor:publish --provider="farenas\AdodbConect\Providers\AdodbConectServiceProvider"

php artisan vendor:publish --tag=oracle
```

Config
------

[](#config)

This will copy the configuration file to `php config/oracle.php`

```
return [
    'oracle' => [
        'driver'         => config('dbConfig.DB_DRIVER'),
        'tns'            => config('dbConfig.DB_TNS'),
        'host'           => config('dbConfig.DB_HOST'),
        'port'           => config('dbConfig.DB_PORT'),
        'database'       => config('dbConfig.DB_DATABASE'),
        'username'       => config('dbConfig.DB_USERNAME'),
        'password'       => config('dbConfig.DB_PASSWORD'),
        'charset'        => config('dbConfig.DB_CHARSET'),
        'prefix'         => config('dbConfig.DB_PREFIX'),
        'prefix_schema'  => config('dbConfig.DB_SCHEMA_PREFIX'),
        'server_version' => config('dbConfig.DB_SERVER_VERSION'),
    ],
];
```

and copy the configuration file to `php config/dbConfig.php`

```
return [
    'DB_DRIVER' => 'oracle',
    'DB_CONNECTION' => 'oracle',
    'DB_HOST' => 'localhost',
    'DB_PORT' => '1070',
    'DB_DATABASE' => 'name_db',
    'DB_USERNAME' => 'root',
    'DB_PASSWORD' => 'password',
    'DB_TNS' => 'tns_names',
    'DB_CHARSET' => 'AL32UTF8',
    'DB_PREFIX' => '',
    'DB_SCHEMA_PREFIX' => '',
    'DB_SERVER_VERSION' => '11g',
    'STRIP_TAGS' => true,
    'EXCEP_TAGS' => '', //''
];
```

```
php artisan vendor:publish --provider="farenas\AdodbConect\Providers\AdodbConectServiceProvider"

php artisan vendor:publish --tag=oracle
```

Usage
-----

[](#usage)

```
use AdodbConect;

$paramAdoDb = [
    'cursor' => true,
    'plsql'  => 'PackageOracle.function_package(:codUser, :codCompany);',
    'datos'  => [
        'codUser' => 2222,
        'codCompany' => 6655
    ]
];

AdodbConect::param($paramAdoDb)->run();
```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) and [CODE\_OF\_CONDUCT](CODE_OF_CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- \[Felix Arenas Lourido\]
- \[All Contributors\]

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 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.

###  Release Activity

Cadence

Every ~46 days

Recently: every ~192 days

Total

21

Last Release

2076d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/3474986a63f982c2a1a92bf48c5344f4e2326bc0796450558325b5668664300a?d=identicon)[felixarenas](/maintainers/felixarenas)

---

Top Contributors

[![felixarenas](https://avatars.githubusercontent.com/u/6069490?v=4)](https://github.com/felixarenas "felixarenas (19 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/felixarenas-adodbconect/health.svg)

```
[![Health](https://phpackages.com/badges/felixarenas-adodbconect/health.svg)](https://phpackages.com/packages/felixarenas-adodbconect)
```

###  Alternatives

[yajra/laravel-oci8

Oracle DB driver for Laravel via OCI8

8703.0M17](/packages/yajra-laravel-oci8)[cyrildewit/eloquent-viewable

Laravel package that allows you to associate views with Eloquent models

8831.1M6](/packages/cyrildewit-eloquent-viewable)[jerome/filterable

Streamline dynamic Eloquent query filtering with seamless API request integration and advanced caching strategies.

19226.1k](/packages/jerome-filterable)[hyperf/database

A flexible database library.

202.8M257](/packages/hyperf-database)[alajusticia/laravel-expirable

Make Eloquent models expirable

2193.4k5](/packages/alajusticia-laravel-expirable)

PHPackages © 2026

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