2017 © Pedro Peláez
 

library phpaccess

Read Microsoft Access databases on Linux using mdbtools command line tools

image

tangervu/phpaccess

Read Microsoft Access databases on Linux using mdbtools command line tools

  • Monday, August 18, 2014
  • by tangervu
  • Repository
  • 2 Watchers
  • 5 Stars
  • 679 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 2 Forks
  • 0 Open issues
  • 1 Versions
  • 2 % Grown

The README.md

PHPAccess

Read Microsoft Access databases on Linux using mdbtools command line tools., (*1)

Installation

The recommended way to install Connection.php is through Composer., (*2)

{
    "require": {
        "tangervu/phpaccess": "dev-master"
    }
}

Example

<?php
require('vendor/autoload.php'); //Use composer autoload

$access = new PHPAccess\PHPAccess('file.mdb');

//Get tables in access database
$tables = $access->getTables();

//Display contents of the tables
foreach($tables as $table) {
    print_r($access->getData($table));
}

//Export table structures as SQL queries
echo $access->getDatabaseSql('mysql');

//etc...

The Versions

18/08 2014

dev-master

9999999-dev https://github.com/tangervu/PHPAccess

Read Microsoft Access databases on Linux using mdbtools command line tools

  Sources   Download

LGPL-3.0

The Requires

 

access microsoft access ms access mdb mdbtools