https://github.com/phalcon/incubator-db
https://github.com/phalcon/incubator-db
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/phalcon/incubator-db
- Owner: phalcon
- License: bsd-3-clause
- Created: 2020-04-03T22:32:14.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-07-15T20:11:37.000Z (about 3 years ago)
- Last Synced: 2025-06-21T20:35:35.038Z (about 1 year ago)
- Language: PHP
- Homepage:
- Size: 160 KB
- Stars: 3
- Watchers: 6
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Phalcon\Incubator\Db
[](http://phalcon.io/discord)
[](https://packagist.org/packages/phalcon/incubator-db)
[](https://packagist.org/packages/phalcon/incubator-db)
[](https://codecov.io/gh/phalcon/incubator-db)
[](https://packagist.org/packages/phalcon/incubator-db/stats)
## Issues tracker
https://github.com/phalcon/incubator/issues
## Oracle adapter
```php
use Phalcon\Incubator\Db\Adapter\Pdo\Oracle;
$di->set(
'db',
function () {
return new Oracle(
[
'dbname' => $_ENV['ORACLE_DB_NAME'],
'username' => $_ENV['ORACLE_DB_USER'],
'password' => $_ENV['ORACLE_DB_PASS'],
]
);
}
);
```