mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-04-05 20:31:00 +08:00
27 lines
936 B
Plaintext
27 lines
936 B
Plaintext
Basic Installation
|
|
==================
|
|
|
|
$ cd src
|
|
$ ./configure
|
|
$ make
|
|
|
|
This will build some useful utilities:
|
|
|
|
mdb-dump -- simple hex dump utility that I've been using to look at mdb files
|
|
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
|
|
mdb-header -- generates a C header to be used in exporting mdb data to a C prog.
|
|
mdb-parsecvs -- generates a C program given a CSV file made with mdb-export
|
|
|
|
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.
|
|
|
|
Once MDB Tools has been compiled, libmdb.a will be in the src/libmdb directory
|
|
and the utility programs will be in the src/util directory.
|
|
|