2017 © Pedro Peláez
 

library dbconnector

This library allow you to connect with Oracle database without concern about all the oci_* functions

image

igor822/dbconnector

This library allow you to connect with Oracle database without concern about all the oci_* functions

  • Saturday, September 12, 2015
  • by igor822
  • Repository
  • 2 Watchers
  • 0 Stars
  • 55 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 6 Versions
  • 0 % Grown

The README.md

Active Oracle

This active record allow you to connect with Oracle database without concern about all the oci_* functions, (*1)

Example

<?php
$dataSource = array(
    'username' => 'hr',
    'password' => 'root',
    'service' => '//localhost/XE',
    'persistent' => true
);
$dboConn = ActiveOracle\DboSource::connect(array('connector' => 'oracle'));
$connector = $dboConn->getConnector()->setDataSource($_dataSource)->openConnection();

To fetch results of some query, (*2)

// fetch() returns by default an array, if want, you can add a second parameter 'object' and return 
// an object ItemIterator()
$result = $dboConn->fetch('select * from dual');

The Versions

12/09 2015

dev-master

9999999-dev

This library allow you to connect with Oracle database without concern about all the oci_* functions

  Sources   Download

MIT

The Requires

 

The Development Requires

12/09 2015

dev-dev

dev-dev

This library allow you to connect with Oracle database without concern about all the oci_* functions

  Sources   Download

MIT

The Requires

 

The Development Requires

22/07 2014

1.0.x-dev

1.0.9999999.9999999-dev

This library allow you to connect with Oracle database without concern about all the oci_* functions

  Sources   Download

MIT

The Requires

 

11/04 2014

dev-parser

dev-parser

This library allow you to connect with Oracle database without concern about all the oci_* functions

  Sources   Download

MIT

The Requires

 

07/03 2014

dev-query-builder

dev-query-builder

This library allow you to connect with Oracle database without concern about all the oci_* functions

  Sources   Download

MIT

The Requires

 

14/02 2014

0.0.1

0.0.1.0

This library allow you to connect with Oracle database without concern about all the oci_* functions

  Sources   Download

MIT

The Requires

  • php >=5.4.0