rexlu/laravelodbc

Adds an ODBC(PDO) driver package to Laravel 4.2, use special method.
12 2
Install
composer require rexlu/laravelodbc
PHP:>=5.3.0
License:MIT
Last Updated:Oct 8, 2017
Links: GitHub  ·  Packagist
Maintainer: Lance70176

odbc-driver

Adds an driver to Laravel 4.2, usable with Fluent and Eloquent.

自定各種 SQL 語法

Installation

Add rexlu/laravelodbc as a requirement to composer.json:

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

Update your packages with composer update or install with composer install.

or by command

composer require rexlu/laravelodbc: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.

Add the following to the list of providers:

'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.

        'odbc' => array(
                'driver'   => 'odbc',
                '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.

Don't forget to update your default database connection.

Related Packages

repat/laravel-medoo

Laravel Facade and ServiceProvider for The Lightest PHP database framework to ac...

248 5
phoenixgao/laravel-postgres-extended-schema

Laravel database schema extended, added some PostgreSql features

2,249 6
marktopper/doctrine-dbal-timestamp-type

Add the timestamp type for Doctrine/DBAL

842,936 49
illuminated/db-profiler

Database Profiler for Laravel Web and Console Applications.

243,355 169