moodlesbv/laravel-msaccess

This package helps you to manage Microsoft Access DB by ODBC Connection with the integrated Laravel ORM.

v1.2.3 2020-01-22 11:09 UTC

This package is auto-updated.

Last update: 2021-08-22 14:59:19 UTC


README

Latest Stable Version Total Downloads Latest Unstable Version License composer.lock

This package helps you to manage Microsoft Access DB by ODBC Connection with the integrated Laravel ORM.

Installation

  1. Install via composer
composer require moodlesbv/laravel-msaccess
  1. Create a DSN with the connection to the database.

  2. Add connection to config/database.php in connections section:

'access' => [
    'driver' => 'pdo_access',
    'connection_string' => 'dsn={namedsn}',
    'username' => '',
    'password' => '',
    'table_prefix' => '',
]
  1. Replace {namedsn} with the name of DSN.

Connect model with the connection

  1. In the model class add the $connection variable like this:
protected $connection = 'access';

License

Licensed under the MIT license

Read LICENSE for more information