wajatimur / odbc-driver by azrijamil
forked from ccovey/odbc-driver

ODBC Driver for Laravel
1,561
8
3
Package Data
Maintainer Username: azrijamil
Maintainer Contact: azri@nematix.com (Azri Jamil)
Package Create Date: 2014-04-05
Package Last Update: 2014-06-12
Language: PHP
License: MIT
Last Refreshed: 2024-05-03 03:06:01
Package Statistics
Total Downloads: 1,561
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 8
Total Watchers: 3
Total Forks: 3
Total Open Issues: 1

Laravel 4 ODBC Build Status

An ODBC driver implementation, currently its support Laravel Framework only.

Requirements

  • PHP 5.3+
  • Laravel 4.1.*

Installation

L4ODBC can be install using composer by adding below line into your existing composer.json under require section and executing composer update in your Laravel project root folder.

"wajatimur/odbc-driver": "dev-master"

Then you need to bootstrap the driver by declaring the service provider registration in you app.php file under app\config path from Laravel project root folder.

'Foundation\Database\Driver\ODBCDriverServiceProvider',

Configuration

Finally be sure to add the odbc driver with connection information to the config/database.php file like so:

    'connections' => array(

        // .. Existing config here ..

        'odbc' => array(
            'driver' => 'odbc',
            'dsn' => 'Driver={iSeries Access ODBC Driver};System=my_system_name;',
            'grammar' => 'DB2',
            'username' => 'foo',
            'password' => 'bar',
            'database' => '',
        ),
    ),

Extending

To create a custom grammar just add your file to Grammars folder within the package. Below is the basic template to create a custom grammar.

namespace Foundation\Database\Driver\Grammars;

use Illuminate\Database\Query\Grammars\Grammar;

class MyCustomGrammar extends {
    // .. Add your override method here ..
}

Using Custom Grammar

To use the custom grammar, jusct change the grammar key in you database config base on you grammar file name. If you have a custom grammar with file name MyCustomGrammar.php, the grammar key should be as below.

'odbc' => array(
    'driver' => 'odbc',
    'dsn' => 'some driver',
    'grammar' => 'MyCustomGrammar',
    'username' => 'foo',
    'password' => 'bar',
    'database' => '',
),

If you would like to use a Laravel provided grammar file just add that instead. For example if you want to use SQL Server Gramamr, you can use the SqlServerGrammar as key in your database config. Others grammar provided by Laravel listed below.

  • MySqlGrammar
  • SqlServerGrammar
  • SQLiteGrammar
  • PostgresGrammar

If you would like to submit a grammar for use in the package please submit a pull request and I will get it in asap.