PHPackages                             mdb-tools/mdb-parser - 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. mdb-tools/mdb-parser

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

mdb-tools/mdb-parser
====================

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

v1.0.0(5y ago)53355[1 issues](https://github.com/OleksiiFedorchak/mdb-tools/issues)[4 PRs](https://github.com/OleksiiFedorchak/mdb-tools/pulls)MITPHPPHP ^7.2.5

Since Apr 2Pushed 2y ago1 watchersCompare

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

READMEChangelogDependencies (1)Versions (2)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

26

—

LowBetter than 43% of packages

Maintenance16

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity47

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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.

###  Release Activity

Cadence

Unknown

Total

1

Last Release

1872d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/fb02e4291068a151e91fea1936b77d5525353de0e93b24971ac55d4c58771cf0?d=identicon)[Oleksii Fedorchak](/maintainers/Oleksii%20Fedorchak)

---

Top Contributors

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

---

Tags

parserMS AccessMDB

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[nikic/php-parser

A PHP parser written in PHP

17.4k902.6M1.8k](/packages/nikic-php-parser)[doctrine/lexer

PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.

11.2k910.8M118](/packages/doctrine-lexer)[erusev/parsedown

Parser for Markdown.

15.0k151.8M732](/packages/erusev-parsedown)[league/commonmark

Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)

3.0k404.0M702](/packages/league-commonmark)[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)

PHPackages © 2026

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