2017 © Pedro Peláez
 

library laravel-msaccess

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

image

zoilomora/laravel-msaccess

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

  • Monday, December 11, 2017
  • by zoilomora
  • Repository
  • 4 Watchers
  • 10 Stars
  • 189 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 2 Open issues
  • 2 Versions
  • 33 % Grown

The README.md

This repository is no longer maintained.

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.

Laravel ORM for Microsoft Access DB

Latest Stable Version Total Downloads Latest Unstable Version License composer.lock, (*1)

This package helps you to manage Microsoft Access DB by ODBC Connection with the integrated Laravel ORM., (*2)

Installation

1) Install via composer, (*3)

composer require zoilomora/laravel-msaccess

2) Add Service Provider to config/app.php in providers section:, (*4)

\ZoiloMora\AccessServiceProvider::class,

3) Create a DSN with the connection to the database., (*5)

4) Add connection to config/database.php in connections section:, (*6)

'access' => [
    'driver' => 'pdo_access',
    'connection_string' => 'dsn={namedsn}',
    'username' => '',
    'password' => '',
    'table_prefix' => '',
]

5) Replace {namedsn} with the name of DSN., (*7)

Connect model with the connection

1) In the model class add the $connection variable like this:, (*8)

protected $connection = 'access';

License

Licensed under the MIT license, (*9)

Read LICENSE for more information, (*10)

The Versions

11/12 2017

dev-master

9999999-dev

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

  Sources   Download

MIT

The Requires

 

The Development Requires

orm laravel microsoft-access

03/08 2017

1.0.0-beta

1.0.0.0-beta

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

  Sources   Download

MIT

The Requires

 

The Development Requires

orm laravel microsoft-access