2018-02-07 03:47:30 +08:00
|
|
|
The original [project repository](https://github.com/brianb/mdbtools) seems to have been abandoned
|
|
|
|
(no activity from author for over a year).
|
|
|
|
|
|
|
|
In this fork I merged a few PR requests to the original repository as well as added some of my own
|
|
|
|
fixes.
|
|
|
|
|
|
|
|
# Installing from packages
|
|
|
|
Since I use these tools in many systems, I packaged it for simpler installation.
|
|
|
|
|
|
|
|
> Had to change package name to avoid collision with original author's package.
|
|
|
|
|
|
|
|
## Ubuntu/Debian
|
|
|
|
> Built on Ubuntu 16.04 LTS only, should work on Debian and similar linux flavors.
|
|
|
|
|
|
|
|
```bash
|
|
|
|
$ sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 7C2FDAFB
|
|
|
|
$ echo "deb http://apt.cyberemissary.com/ubuntu/ xenial main" | sudo btee -a /etc/apt/sources.list.d/apt.cyberemissary.com.list
|
|
|
|
$ sudo apt-update
|
|
|
|
$ sudo apt-get install cyber-mdbtools
|
|
|
|
```
|
|
|
|
|
2018-02-14 02:54:34 +08:00
|
|
|
## RPM Package
|
|
|
|
No repository for RPM distribution, but you can install from rpm file:
|
|
|
|
|
|
|
|
```bash
|
2018-12-28 20:11:51 +08:00
|
|
|
# Replace the <version> with the version number you wish to install. For list of versions see the releases on GitHub
|
|
|
|
|
|
|
|
$ wget https://rpm.cybercoder.site/rpm/cyber-mdbtools-<version>-1.x86_64.rpm
|
|
|
|
$ rpm -i cyber-mdbtools-<version>-1.x86_64.rpm
|
2018-02-14 02:54:34 +08:00
|
|
|
```
|
|
|
|
|
|
|
|
> The RPM package was created using `alient` from the DEB package, so it may or may not work on your linux distribution.
|
|
|
|
|
2018-02-07 03:47:30 +08:00
|
|
|
# Contributing
|
|
|
|
Feel free to submit PR requests here. I will try to review and merge them regularly.
|
|
|
|
|
2017-12-18 02:23:48 +08:00
|
|
|
# mdbtools
|
2018-02-07 03:47:30 +08:00
|
|
|
_version 0.8.1_
|
2000-02-13 07:51:37 +08:00
|
|
|
|
2002-04-15 07:35:39 +08:00
|
|
|
Welcome to the exciting world of MDB Tools! In short, MDB Tools is a set of
|
2004-06-21 08:31:39 +08:00
|
|
|
programs to help you use Microsoft Access file in various settings. The major
|
2002-04-15 07:35:39 +08:00
|
|
|
pieces are:
|
|
|
|
|
2017-12-18 02:23:48 +08:00
|
|
|
```
|
2002-04-15 07:35:39 +08:00
|
|
|
. libmdb - the core library that allows access to MDB files programatically.
|
2012-08-09 21:07:45 +08:00
|
|
|
. libmdbsql - builds on libmdb to provide a SQL engine (aka Jet)
|
2013-07-15 03:35:06 +08:00
|
|
|
. utils - provides command line utilities:
|
|
|
|
mdb-ver -- prints the version (JET 3 or 4) of an mdb file.
|
|
|
|
mdb-schema -- prints DDL for the specified table.
|
|
|
|
mdb-export -- export table to CSV format.
|
|
|
|
mdb-tables -- a simple dump of table names to be used with shell
|
|
|
|
scripts
|
2017-02-05 03:56:24 +08:00
|
|
|
mdb-count -- a simple count of number of rows in a table, to be
|
|
|
|
used in shell scripts and ETL pipelines
|
2013-07-15 03:35:06 +08:00
|
|
|
mdb-header -- generates a C header to be used in exporting mdb
|
|
|
|
data to a C prog.
|
2015-09-27 04:40:04 +08:00
|
|
|
mdb-parsecsv -- generates a C program given a CSV file made with
|
2013-07-15 03:35:06 +08:00
|
|
|
mdb-export
|
|
|
|
mdb-sql -- if --enable-sql is specified, a simple SQL engine
|
|
|
|
(also used by ODBC and gmdb).
|
|
|
|
- And some utilities useful for debugging:
|
|
|
|
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.
|
2002-04-15 07:35:39 +08:00
|
|
|
. mdb-sql - a command line SQL tool that allows one to type sql queries and
|
|
|
|
get results.
|
2004-10-16 22:21:13 +08:00
|
|
|
. odbc - An ODBC driver for use with unixODBC or iODBC driver manager.
|
|
|
|
Allows one to use MDB files with PHP for example.
|
2004-02-06 10:34:20 +08:00
|
|
|
. gmdb2 - The Gnome MDB File Viewer and debugger. Still alpha, but making
|
2002-04-15 07:35:39 +08:00
|
|
|
great progress.
|
2014-05-02 20:52:27 +08:00
|
|
|
. extras - extra command line utilities
|
|
|
|
mdb-dump -- simple hex dump utility that I've been using to look
|
|
|
|
at mdb files.
|
2017-12-18 02:23:48 +08:00
|
|
|
```
|
2000-02-13 07:51:37 +08:00
|
|
|
|
2002-04-04 07:02:53 +08:00
|
|
|
If you are interested in helping, read the 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
|
|
|
|
|
|
|
The initial goal of these tools is to be able to extract data structures and
|
2000-03-14 08:53:17 +08:00
|
|
|
data from mdb files. This goal will of course expand over time as the file
|
2013-07-15 03:35:06 +08:00
|
|
|
format becomes more well understood.
|
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
|
|
|
|
utilities and gui program are under the GPL, see COPYING.LIB and COPYING files
|
2004-03-05 05:25:09 +08:00
|
|
|
respectively.
|
2000-02-13 07:51:37 +08:00
|
|
|
|
2000-03-05 01:31:07 +08:00
|
|
|
|
2013-07-15 03:35:06 +08:00
|
|
|
Requirements:
|
|
|
|
=============
|
|
|
|
|
|
|
|
First, you must have reasonably current installations of:
|
2018-02-07 03:47:30 +08:00
|
|
|
`libtool`
|
|
|
|
`automake`
|
|
|
|
`autoconf` (version >= 2.58)
|
2013-07-15 03:35:06 +08:00
|
|
|
If you don't you should install them first. Sources are available at
|
|
|
|
ftp.gnu.org.
|
|
|
|
|
2018-02-07 03:47:30 +08:00
|
|
|
Second, you need glib. It may come as `glib2.0` and `glib2.0-dev` packages in your
|
2015-02-21 13:51:47 +08:00
|
|
|
distribution.
|
|
|
|
|
2018-02-07 03:47:30 +08:00
|
|
|
If you want to build the SQL engine, you'll need `bison` or `byacc`, and `flex`.
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2018-02-07 03:47:30 +08:00
|
|
|
If you want to build the ODBC driver, you'll need `unixodbc-dev` (version 2.2.10 or
|
2013-07-15 03:35:06 +08:00
|
|
|
above) or iodbc.
|
|
|
|
|
2018-02-07 03:47:30 +08:00
|
|
|
If you want to build man pages, you'll need `txt2man`. Source is available at
|
2013-07-15 03:35:06 +08:00
|
|
|
http://mvertes.free.fr/download/.
|
|
|
|
|
|
|
|
If you want to generate the html version of the docbook, you'll need openjade
|
|
|
|
and basic dsl catalogs.
|
|
|
|
|
|
|
|
|
|
|
|
Installation from source:
|
|
|
|
=========================
|
|
|
|
|
2018-02-07 03:47:30 +08:00
|
|
|
Last version is available at https://github.com/cyberemissary/mdbtools
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2017-12-18 02:23:48 +08:00
|
|
|
```bash
|
|
|
|
$ autoreconf -i -f
|
|
|
|
```
|
2013-07-15 03:35:06 +08:00
|
|
|
|
|
|
|
If you want to build the html version of the docbook documentation, you need to
|
|
|
|
set the environment variable DOCBOOK_DSL to the modular dsl translation file.
|
|
|
|
For exemple, before configure, you need something like:
|
|
|
|
|
2017-12-18 02:23:48 +08:00
|
|
|
```bash
|
|
|
|
$ export DOCBOOK_DSL=/usr/share/sgml/docbook/stylesheet/dsssl/modular/html/docbook.dsl
|
2013-07-15 03:35:06 +08:00
|
|
|
|
2017-12-18 02:23:48 +08:00
|
|
|
$ ./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
|
|
|
|
|
|
|
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
|
|
|
```
|
|
|
|
|
2013-07-15 03:35:06 +08:00
|
|
|
A list of general options is available in the INSTALL file, and
|
2017-12-18 02:23:48 +08:00
|
|
|
`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
|
|
|
|
|
|
|
|
2018-02-07 03:47:30 +08:00
|
|
|
Contacts
|
|
|
|
========
|
2000-02-13 07:51:37 +08:00
|
|
|
|
2018-02-07 03:47:30 +08:00
|
|
|
Please send bug reports to the new github repository.
|
|
|
|
https://github.com/cyberemissary/mdbtools/issues
|
2000-02-13 07:51:37 +08:00
|
|
|
|