Looking to hire Laravel developers? Try LaraJobs

laravel-odbc-driver maintained by vmeditab

Description
ODBC driver for Laravel 8.x & PHP 8.x
Author
Last update
2021/03/04 07:50 (dev-master)
License
Links
Downloads
50
Tags

Comments
comments powered by Disqus

laravel-odbc-driver

ODBC Driver for Laravel 5.5+

Prerequisites

  • The composer.json file use the "auto discover" function so you must have laravel ^5.5
  • You must create a ODBC in your operating system

Installation

Install package with composer

composer require agomez/laravel-odbc-driver

Run composer update

composer update

Add odbc to config/database.php

        'odbc' => [
            'driver' => 'odbc',
            'dsn' => 'dns name',
            'grammar' => 'DB2',
            'username' => 'username',
            'password' => 'password',
            'database' => 'database'
        ],

Test

@php
    $array = DB::connection('odbc')->select('raw sql query');
    dd($array);
@endphp

Original