PHPackages                             emiliosh/mdb-tools - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Parsing &amp; Serialization](/categories/parsing)
4. /
5. emiliosh/mdb-tools

ActiveLibrary[Parsing &amp; Serialization](/categories/parsing)

emiliosh/mdb-tools
==================

Parser for MS Access Database files. This package is build and tested on .mdb files but can be tested with other formats

03PHP

Since Jul 1Pushed 1y agoCompare

[ Source](https://github.com/emiliosh/mdb-tools)[ Packagist](https://packagist.org/packages/emiliosh/mdb-tools)[ RSS](/packages/emiliosh-mdb-tools/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

PHP Parser for MS Access .mdb files
===================================

[](#php-parser-for-ms-access-mdb-files)

**Description**

If you challenged the problem with integrating you app with MS Access database, then you in correct place! This package can parse MS Access backup files ".mdb" files.

Of course there is not magic behind of this, and to make it work you need to install special utility, which is able to read .mdb files. That utility called "mdb-tools".

**How it works?**

There is simple idea! The package is transferring your .mdb file to mdb-tools CLI. So, when you query tables list, this package just run in CLI:

```
mdb-tables backup.mdb

```

**Installation**

1. Install mdb-tools globally on your machine:

```
apt-get update -y

```

```
apt-get install -y mdbtools

```

2. Install Composer PHP package:

```
composer require mdb-tools/mdb-parser

```

**Usage**

Main logic is put into class "Parser", which has corresponded Facade class. You may include the parser into your code like this:

```
use MDBTools\Facades\Parsers\MDBParser;
```

After you may do things like this:

```
//load you file
$parser = MDBParser::loadFile('/path/to/file');

//see table names...
$tables = $parser->tables();

//parse data from one chosen table...
print_r($parser->selectTable('some_table')->toArray());
```

**Links**

- Visit author's [linkedin](https://www.linkedin.com/in/oleksii-fedorchak-web-developer/)
- Composer package [link](https://packagist.org/packages/mdb-tools/mdb-parser)
- Documentation is [here](https://mdb-parcer.tech/)

###  Health Score

14

—

LowBetter than 2% of packages

Maintenance27

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity18

Early-stage or recently created project

 Bus Factor1

Top contributor holds 89.5% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/b959e8c712ca3e1ffc7c624bdcb4948acef354f98a4656ba76a910252fcc7579?d=identicon)[emiliosh](/maintainers/emiliosh)

---

Top Contributors

[![AlexeyFedorchak](https://avatars.githubusercontent.com/u/50767392?v=4)](https://github.com/AlexeyFedorchak "AlexeyFedorchak (17 commits)")[![emiliosh](https://avatars.githubusercontent.com/u/8056366?v=4)](https://github.com/emiliosh "emiliosh (2 commits)")

### Embed Badge

![Health badge](/badges/emiliosh-mdb-tools/health.svg)

```
[![Health](https://phpackages.com/badges/emiliosh-mdb-tools/health.svg)](https://phpackages.com/packages/emiliosh-mdb-tools)
```

###  Alternatives

[mtdowling/jmespath.php

Declaratively specify how to extract elements from a JSON document

2.0k472.8M135](/packages/mtdowling-jmespathphp)[opis/closure

A library that can be used to serialize closures (anonymous functions) and arbitrary data.

2.6k230.0M284](/packages/opis-closure)[masterminds/html5

An HTML5 parser and serializer.

1.8k242.8M229](/packages/masterminds-html5)[sabberworm/php-css-parser

Parser for CSS Files written in PHP

1.8k191.2M65](/packages/sabberworm-php-css-parser)[michelf/php-markdown

PHP Markdown

3.5k52.4M345](/packages/michelf-php-markdown)[jms/metadata

Class/method/property metadata management in PHP

1.8k152.8M88](/packages/jms-metadata)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
