It is recommended to visit the updated repository https://github.com/zoilomora/doctrine-dbal-msaccess that is being maintained and is not limited to the Laravel framework.
This package helps you to manage Microsoft Access DB by ODBC Connection with the integrated Laravel ORM.
- Install via composer
composer require zoilomora/laravel-msaccess
- Add Service Provider to
config/app.php
inproviders
section:
\ZoiloMora\AccessServiceProvider::class,
-
Create a DSN with the connection to the database.
-
Add connection to
config/database.php
inconnections
section:
'access' => [
'driver' => 'pdo_access',
'connection_string' => 'dsn={namedsn}',
'username' => '',
'password' => '',
'table_prefix' => '',
]
- Replace
{namedsn}
with the name of DSN.
- In the model class add the
$connection
variable like this:
protected $connection = 'access';
Licensed under the MIT license
Read LICENSE for more information