2017 © Pedro Peláez
 

library laraveloracleodbc

Adds an Oracle ODBC(PDO) driver package to Laravel 4.2

image

rexlu/laraveloracleodbc

Adds an Oracle ODBC(PDO) driver package to Laravel 4.2

  • Friday, August 19, 2016
  • by Lance70176
  • Repository
  • 3 Watchers
  • 6 Stars
  • 330 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 0 Open issues
  • 1 Versions
  • 2 % Grown

The README.md

Laravel-oracle-pdo-odbc-driver

Adds an ODBC driver to Laravel 4.2, usable with Fluent and Eloquent., (*1)

最大用途是透過此套件可以連接自定義的界接層 (EX:SQL Relay)在連到 Oracle, (*2)

如有在 laravel 5.2 需要搭配 SQL Relay 連到 Oracle 的專案, (*3)

請寄信跟我聯絡, (*4)

Installation

Add rexlu/laraveloracleodbc as a requirement to composer.json:, (*5)

{
    "require": {
        "rexlu/laraveloracleodbc": "dev-master"
    }
}

Update your packages with composer update or install with composer install., (*6)

or by command, (*7)

composer require rexlu/laraveloracleodbc:dev-master -vvv

Once Composer has installed or updated your packages you need to register LaravelODBC and the package it uses (extradb) with Laravel itself. Open up app/config/app.php and find the providers key towards the bottom., (*8)

Add the following to the list of providers:, (*9)

'rexlu\Laravelodbc\ODBCServiceProvider'

Configuration

There is no separate package configuration file for LaravelODBC. You'll just add a new array to the connections array in app/config/database.php., (*10)

        'odbc' => array(
                'driver'   => 'odbc',
                'dsn'      => 'odbc:datasource',
                'charset'  => 'utf8',
                'username' => 'xxxxxUserxxxxxx',
                'password' => 'xxxxxxpasswordxxxx',
                'database' => 'xxxxxxDBxxxxxx',
                'prefix'   => '',
            ),

        ),

The ODBC driver is different from the pre-installed ones in that you're going to pass in the DSN instead of having Laravel build it for you. There are just too many ways to configure an ODBC database for this package to do it for you. Some sample configurations are at php.net., (*11)

Don't forget to update your default database connection., (*12)

The Versions

19/08 2016

dev-master

9999999-dev

Adds an Oracle ODBC(PDO) driver package to Laravel 4.2

  Sources   Download

MIT

The Requires

 

database laravel odbc oracle