rui_mashita/laravel-dblib-odbc-sqlserver

PDO DBLIB or PDO ODBC SQL Server Driver for Laravel 4
1,773 10
Install
composer require rui_mashita/laravel-dblib-odbc-sqlserver
PHP:>=5.3.0
License:MIT
Last Updated:Feb 6, 2015
Links: GitHub  ·  Packagist
Maintainer: rui_mashita

PDO DBLIB and PDO ODBC SQL Server Driver for Laravel 4.

Requirements

  • PHP 5.3+
  • Laravel 4.2.*

Installation

Add rui_mashita/laravel-dblib-odbc-sqlserver as a requirement to composer.json:

{
    "require": {
        "rui_mashita/laravel-dblib-odbc-sqlserver": "dev-master"
    }
}

service provider registration in you app.php file under app\config path from Laravel project root folder.

'DblibOdbcSqlServer\Database\ServiceProvider',

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 config example
        'odbc' => array(
            'driver' => 'odbc',
            'dsn' => 'Driver={ODBC Driver};',
            'username' => 'foo',
            'password' => 'bar',
            'database' => '',
        ),

        // DBLIB config example
        'dblib' => array(
            'driver' => 'dblib',
            'host' => '172.16.0.223',
            'port' => '1433',
            'username' => 'sa',
            'password' => 'password',
            'database' => 'testtest',
        ),
    ),

Related Packages

tobymaxham/laravel-odbc-driver

An ODBC Driver for SQL Server within Laravel

6,526 9
jacksonwebservices/laravel-iseries

Laravel-odbc-iseris connection

14,231 2
cooperl/laravel-db2

laravel-db2 is a simple DB2 service provider for Laravel. It provides DB2 Connec...

128,218 58
cooperl/laravel-ibmi

laravel-ibmi is a simple DB2 & Toolkit for IBMi service provider for Laravel. It...

16,536 10
wajatimur/odbc-driver

ODBC Driver for Laravel

1,565 8