2020-12-29 10:43:32 +08:00
|
|
|
[](https://github.com/mdbtools/mdbtools/actions)
|
2020-12-18 00:20:23 +08:00
|
|
|
[](https://ci.appveyor.com/project/evanmiller/mdbtools/branch/dev)
|
2021-01-15 03:54:37 +08:00
|
|
|
[](https://bugs.chromium.org/p/oss-fuzz/issues/list?sort=-opened&can=1&q=proj:mdbtools)
|
2018-02-07 03:47:30 +08:00
|
|
|
|
2020-09-02 05:52:38 +08:00
|
|
|
Welcome to the exciting world of MDB Tools! MDB Tools is a set of programs to
|
2020-11-27 18:50:41 +08:00
|
|
|
help you extract data from Microsoft Access files in various settings. See the
|
|
|
|
[NEWS](./NEWS) file for information about the latest release.
|
2018-02-07 03:47:30 +08:00
|
|
|
|
2021-01-17 00:05:28 +08:00
|
|
|
## Components
|
2000-02-13 07:51:37 +08:00
|
|
|
|
2020-08-04 03:02:20 +08:00
|
|
|
The major pieces of MDB Tools are:
|
2002-04-15 07:35:39 +08:00
|
|
|
|
2021-01-17 00:05:28 +08:00
|
|
|
### libmdb
|
2000-02-13 07:51:37 +08:00
|
|
|
|
2021-08-05 03:33:43 +08:00
|
|
|
The core library that allows access to MDB files programatically. See [mdbtools.h](./include/mdbtools.h.in) for the complete API.
|
2000-02-13 07:51:37 +08:00
|
|
|
|
2021-01-17 00:05:28 +08:00
|
|
|
### libmdbsql
|
2020-08-04 03:02:20 +08:00
|
|
|
|
2021-08-05 03:33:43 +08:00
|
|
|
Builds on libmdb to provide a SQL engine (aka Jet). See [mdbsql.h](./include/mdbsql.h) for the complete API.
|
2020-08-04 03:02:20 +08:00
|
|
|
|
2021-01-17 00:05:28 +08:00
|
|
|
### utils
|
2020-08-04 03:02:20 +08:00
|
|
|
|
2020-08-10 03:23:38 +08:00
|
|
|
Provides command line utilities, including:
|
2020-08-04 03:02:20 +08:00
|
|
|
|
2020-08-07 00:51:45 +08:00
|
|
|
| Command | Description |
|
|
|
|
| ------- | ----------- |
|
2020-08-10 03:23:38 +08:00
|
|
|
| `mdb-ver` | Prints the version (JET 3 or 4) of an mdb file. |
|
|
|
|
| `mdb-schema` | Prints DDL for the specified table. |
|
2020-09-02 23:47:50 +08:00
|
|
|
| `mdb-export` | Export table to CSV or SQL formats. |
|
|
|
|
| `mdb-json` | Export table to JSON format. |
|
2020-08-10 03:23:38 +08:00
|
|
|
| `mdb-tables` | A simple dump of table names to be used with shell scripts. |
|
|
|
|
| `mdb-count` | A simple count of number of rows in a table, to be used in shell scripts and ETL pipelines. |
|
|
|
|
| `mdb-sql` | A simple SQL engine (also used by ODBC and gmdb). |
|
2020-09-02 10:54:39 +08:00
|
|
|
| `mdb-queries` | List and print queries stored in the database. |
|
2021-08-05 04:13:09 +08:00
|
|
|
| `mdb-hexdump`\* | (in [src/extras](./src/extras)) Simple hex dump utility to look at mdb files. |
|
2021-08-05 03:33:43 +08:00
|
|
|
| `mdb-array`\* | Export data in an MDB database table to a C array. |
|
|
|
|
| `mdb-header`\* | Generates a C header to be used in exporting mdb data to a C prog. |
|
|
|
|
| `mdb-parsecsv`\* | Generates a C program given a CSV file made with mdb-export. |
|
|
|
|
|
|
|
|
\* Deprecated
|
|
|
|
|
|
|
|
See the man page of each program for usage instructions.
|
|
|
|
|
2021-08-05 04:57:36 +08:00
|
|
|
The [src/util](./src/util) directory also contains a number of debugging tools, intended for developers. They are:
|
2021-08-05 03:33:43 +08:00
|
|
|
|
2021-08-05 04:13:09 +08:00
|
|
|
| Command | Description |
|
|
|
|
| ------- | ----------- |
|
2020-08-10 03:23:38 +08:00
|
|
|
| `prcat` | Prints the catalog table from an mdb file. |
|
|
|
|
| `prkkd` | Dump of information about design view data given the offset to it. |
|
|
|
|
| `prtable` | Dump of a table definition. |
|
|
|
|
| `prdata` | Dump of the data given a table name. |
|
|
|
|
| `prole` | Dump of ole columns given a table name and sargs. |
|
2020-11-27 18:50:41 +08:00
|
|
|
|
2021-08-05 03:33:43 +08:00
|
|
|
These tools are not installed on the host system.
|
2020-08-10 03:23:38 +08:00
|
|
|
|
2021-01-17 00:05:28 +08:00
|
|
|
### odbc
|
2020-08-10 03:23:38 +08:00
|
|
|
|
|
|
|
An ODBC driver for use with unixODBC or iODBC driver manager. Allows one to use MDB files with PHP for example.
|
|
|
|
|
2021-01-17 00:05:28 +08:00
|
|
|
### gmdb2
|
2020-08-10 03:23:38 +08:00
|
|
|
|
2021-08-05 03:33:43 +08:00
|
|
|
The Gnome MDB File Viewer and debugger. Recently ported to GTK+3 and moved to [mdbtools/gmdb2](https://github.com/mdbtools/gmdb2).
|
2020-08-04 03:02:20 +08:00
|
|
|
|
2021-01-17 00:05:28 +08:00
|
|
|
## License
|
2000-02-13 07:51:37 +08:00
|
|
|
|
2013-07-15 03:35:06 +08:00
|
|
|
Files in libmdb, libmdbsql, and libmdbodbc are licensed under LGPL and the
|
2020-08-04 03:02:20 +08:00
|
|
|
utilities and gui program are under the GPL, see [COPYING.LIB](./COPYING.LIB)
|
|
|
|
and [COPYING](./COPYING) files respectively.
|
2000-02-13 07:51:37 +08:00
|
|
|
|
2000-03-05 01:31:07 +08:00
|
|
|
|
2021-01-17 00:05:28 +08:00
|
|
|
## Requirements
|
2013-07-15 03:35:06 +08:00
|
|
|
|
|
|
|
First, you must have reasonably current installations of:
|
|
|
|
|
2020-08-04 03:02:20 +08:00
|
|
|
* [libtool](https://www.gnu.org/software/libtool/)
|
|
|
|
* [automake](https://www.gnu.org/software/automake/)
|
2021-08-25 20:49:57 +08:00
|
|
|
* [autoconf](https://www.gnu.org/software/autoconf/) (version >= 2.64)
|
2015-02-21 13:51:47 +08:00
|
|
|
|
2020-08-04 03:02:20 +08:00
|
|
|
If you want to build the SQL engine, you'll need
|
2020-08-18 19:32:15 +08:00
|
|
|
[bison](https://www.gnu.org/software/bison/) (version >= 3.0) or
|
2020-08-04 03:02:20 +08:00
|
|
|
[byacc](https://invisible-island.net/byacc/byacc.html), and
|
|
|
|
[flex](https://github.com/westes/flex).
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2020-08-04 03:02:20 +08:00
|
|
|
If you want to build the ODBC driver, you'll need `unixodbc-dev` (version
|
|
|
|
2.2.10 or above) or [iodbc](http://www.iodbc.org/dataspace/doc/iodbc/wiki/iodbcWiki/WelcomeVisitors).
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2020-08-04 03:02:20 +08:00
|
|
|
If you want to build man pages, you'll need
|
2020-09-02 08:27:19 +08:00
|
|
|
[GNU awk](https://www.gnu.org/software/gawk/).
|
2013-07-15 03:35:06 +08:00
|
|
|
|
|
|
|
|
2021-01-17 00:05:28 +08:00
|
|
|
## Installation
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2020-09-02 08:27:19 +08:00
|
|
|
Latest version is available at https://github.com/mdbtools/mdbtools
|
|
|
|
|
2021-01-17 00:05:28 +08:00
|
|
|
### Debian
|
2020-09-02 08:27:19 +08:00
|
|
|
|
|
|
|
```
|
2020-11-15 21:28:38 +08:00
|
|
|
apt install mdbtools
|
2020-09-02 08:27:19 +08:00
|
|
|
```
|
|
|
|
|
2021-01-17 00:05:28 +08:00
|
|
|
### Homebrew
|
2020-09-02 08:27:19 +08:00
|
|
|
|
|
|
|
```bash
|
|
|
|
brew install mdbtools
|
|
|
|
```
|
|
|
|
|
2021-08-05 03:33:43 +08:00
|
|
|
### MacPorts
|
|
|
|
|
|
|
|
```bash
|
|
|
|
port install mdbtools
|
|
|
|
```
|
|
|
|
|
2021-01-17 00:05:28 +08:00
|
|
|
### From source
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2021-03-07 22:02:51 +08:00
|
|
|
If you have cloned the Git repository, you will first need to generate the
|
|
|
|
`configure` file (skip this step if you have downloaded a formal release):
|
|
|
|
|
2017-12-18 02:23:48 +08:00
|
|
|
```bash
|
2020-10-12 02:59:08 +08:00
|
|
|
$ autoreconf -i -f
|
2017-12-18 02:23:48 +08:00
|
|
|
```
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2020-12-04 22:14:12 +08:00
|
|
|
Then:
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2017-12-18 02:23:48 +08:00
|
|
|
```bash
|
|
|
|
$ ./configure
|
|
|
|
```
|
2013-07-15 03:35:06 +08:00
|
|
|
|
|
|
|
OR for a complete install (requires bison, flex, and unixODBC):
|
|
|
|
|
2017-12-18 02:23:48 +08:00
|
|
|
```bash
|
|
|
|
$ ./configure --with-unixodbc=/usr/local
|
|
|
|
```
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2020-08-07 00:51:45 +08:00
|
|
|
By default, MDB Tools is linked against the copy of
|
|
|
|
[GLib](https://developer.gnome.org/glib/) returned by pkg-config. You can
|
|
|
|
point to a different GLib installation using the `GLIB_CFLAGS` and `GLIB_LIBS`
|
|
|
|
enivornment variables. Or, you can disable GLib entirely with the
|
|
|
|
`--disable-glib` flag, in which case MDB Tools will use an internal
|
|
|
|
implementation of GLib's functions.
|
|
|
|
|
2013-07-15 03:35:06 +08:00
|
|
|
configure can be passed any of the following flags to turn on other
|
2017-12-18 02:23:48 +08:00
|
|
|
capabilities. Note that the options `--with-unixodbc` and `--with-iodbc` are
|
2013-07-15 03:35:06 +08:00
|
|
|
mutually exclusive.
|
2017-12-18 02:23:48 +08:00
|
|
|
|
|
|
|
```
|
2013-07-15 03:35:06 +08:00
|
|
|
--with-unixodbc specifies the location of the unixODBC driver manager and
|
|
|
|
causes the unixODBC driver to be built.
|
|
|
|
--with-iodbc specifies the location of the iODBC driver manager and
|
|
|
|
causes the iODBC driver to be built.
|
2017-12-18 02:23:48 +08:00
|
|
|
```
|
|
|
|
|
2021-08-24 01:39:39 +08:00
|
|
|
By default, the ODBC driver will be installed as /usr/local/lib/odbc/libmdbodbc.so,
|
|
|
|
with a Unicode-capable driver at /usr/local/lib/odbc/libmdbodbcW.so.
|
|
|
|
|
2023-05-17 19:10:43 +08:00
|
|
|
The command `configure --help` will give you the list of mdbtools specific options.
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2017-12-18 02:23:48 +08:00
|
|
|
```bash
|
|
|
|
$ make
|
|
|
|
```
|
2013-07-15 03:35:06 +08:00
|
|
|
|
|
|
|
Once MDB Tools has been compiled, libmdb.[so|a] will be in the src/libmdb
|
|
|
|
directory and the utility programs will be in the src/util directory.
|
|
|
|
|
2018-02-07 03:47:30 +08:00
|
|
|
You can then install (to /usr/local by default) by running the following as root:
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2018-02-07 03:47:30 +08:00
|
|
|
```bash
|
|
|
|
$ make install
|
|
|
|
```
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2018-02-07 03:47:30 +08:00
|
|
|
Some systems will also need the ld cache to be updated after installation;
|
|
|
|
You can do that running:
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2018-02-07 03:47:30 +08:00
|
|
|
```bash
|
|
|
|
$ ldconfig
|
|
|
|
```
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2021-01-17 00:05:28 +08:00
|
|
|
## Hacking
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2020-08-04 03:02:20 +08:00
|
|
|
If you are interested in helping, read the [HACKING](./HACKING) file for a description of
|
|
|
|
where the code stands and what has been gleened of the file format.
|
2000-02-13 07:51:37 +08:00
|
|
|
|
2021-01-17 00:05:28 +08:00
|
|
|
## Contact
|
2000-02-13 07:51:37 +08:00
|
|
|
|
2020-08-04 03:02:20 +08:00
|
|
|
Please send bug reports to the new github repository.
|
2020-09-02 05:52:38 +08:00
|
|
|
https://github.com/mdbtools/mdbtools/issues
|