Added some manuals, updated AUTHORS

This commit is contained in:
Nirgal Vourgère 2020-10-21 12:48:20 +02:00
parent 7f28e1cef4
commit 93f109ecb8
5 changed files with 133 additions and 3 deletions

10
AUTHORS
View File

@ -40,5 +40,11 @@ Tim Retout <tim@retout.co.uk>
Nirgal Vourgère <jmb_deb@nirgal.com>
postgres fixes and adds, bug fixes
@kodonnell
added (trivial) mdb-count utility
Kane O'Donnell <kane.odonnell@datamine.com>
Added mdb-count utility.
Leonard Leblanc <lleblanc@macroelite.ca>
Added mdb-queries utility.
Ugo Di Girolamo <ugo@urbancompass.com>
Added mdb-json utility.

View File

@ -6,7 +6,8 @@ PRODUCT = MDBTools
dist_man_MANS =
if ENABLE_MAN
dist_man_MANS += mdb-tables.1 mdb-ver.1 mdb-export.1 mdb-schema.1 mdb-sql.1 \
mdb-array.1 mdb-header.1 mdb-hexdump.1 mdb-parsecsv.1 mdb-prop.1 mdb-import.1
mdb-array.1 mdb-header.1 mdb-hexdump.1 mdb-parsecsv.1 mdb-prop.1 mdb-import.1 \
mdb-count.1 mdb-json.1 mdb-queries.1
endif
if ENABLE_DOCBOOK
dist_man_MANS += install.tgz
@ -14,6 +15,7 @@ endif
CLEANFILES = ${dist_man_MANS} install install.tgz
EXTRA_DIST = mdb-tables.txt mdb-ver.txt mdb-export.txt mdb-schema.txt mdb-sql.txt \
mdb-array.txt mdb-header.txt mdb-hexdump.txt mdb-parsecsv.txt mdb-prop.txt mdb-import.txt \
mdb-count.txt mdb-json.txt mdb-queries.txt \
faq.html install.sgml txt2man
.txt.1:

38
doc/mdb-count.txt Normal file
View File

@ -0,0 +1,38 @@
NAME
mdb-count - Get listing of tables in an MDB database
SYNOPSIS
mdb-count file table
DESCRIPTION
mdb-count is a utility program distributed with MDB Tools.
It outputs the number of rows in a table.
OPTIONS
NOTES
ENVIRONMENT
MDB_JET3_CHARSET Defines the charset of the input JET3 (access 97) file. Default is CP1252. See iconv(1).
MDBICONV Defines the output charset. Default is UTF-8. mdbtools must have been compiled with iconv.
MDBOPTS semi-column separated list of options:
* use_index
* no_memo
* debug_like
* debug_write
* debug_usage
* debug_ole
* debug_row
* debug_props
* debug_all is a shortcut for all debug_* options
HISTORY
mdb-count first appeared in MDB Tools 0.9.
SEE ALSO
mdb-export(1) mdb-hexdump(1) mdb-import(1) mdb-prop(1) mdb-sql(1) mdb-ver(1)
mdb-array(1) mdb-header(1) mdb-parsecsv(1) mdb-schema(1) mdb-tables(1)
AUTHORS
The mdb-count utility was written by Kane O'Donnell.

42
doc/mdb-json.txt Normal file
View File

@ -0,0 +1,42 @@
NAME
mdb-json - Export data in an MDB database table to JSON.
SYNOPSIS
mdb-json [-D fmt] [-T fmt] [-U] database table
mdb-json -h|--help
DESCRIPTION
mdb-json is a utility program distributed with MDB Tools.
It produces a CSV (comma separated value) output for the given table. Such output is suitable for importation into databases or spreadsheets.
OPTIONS
-D, --date-format fmt Set the date format (see strftime(3) for details).
-T, --time-format fmt Set the date/time format (see strftime(3) for details).
-U, --no-unprintable Change unprintable characters to spaces (otherwise escaped as \\u00XX)
NOTES
ENVIRONMENT
MDB_JET3_CHARSET Defines the charset of the input JET3 (access 97) file. Default is CP1252. See iconv(1).
MDBICONV Defines the output charset to use for the SQL file. Default is UTF-8. mdbtools must have been compiled with iconv.
MDBOPTS semi-column separated list of options:
* use_index
* no_memo
* debug_like
* debug_write
* debug_usage
* debug_ole
* debug_row
* debug_props
* debug_all is a shortcut for all debug_* options
SEE ALSO
mdb-export(1) mdb-hexdump(1) mdb-prop(1) mdb-sql(1) mdb-ver(1) mdb-array(1) mdb-header(1)
mdb-parsecsv(1) mdb-schema(1) mdb-tables(1) mdb-import(1)
HISTORY
mdb-json first appeared in MDB Tools 0.9.
AUTHORS
The mdb-json utility was written by Ugo Di Girolamo. It is based on mdb-export(1).

42
doc/mdb-queries.txt Normal file
View File

@ -0,0 +1,42 @@
NAME
mdb-queries - Get listing of tables in an MDB database
SYNOPSIS
mdb-queries [-L] [-1] [-d delim] database query
mdb-queries -h|--help
DESCRIPTION
mdb-queries is a utility program distributed with MDB Tools.
It produces a list of queries in the database, and dump the SQL associated with a specific query.
OPTIONS
-L List queries in the database (default if no query name is passed)
-1 Use newline as the delimiter (used in conjuction with listing)
-d delim Specify delimiter to use
NOTES
ENVIRONMENT
MDB_JET3_CHARSET Defines the charset of the input JET3 (access 97) file. Default is CP1252. See iconv(1).
MDBICONV Defines the output charset. Default is UTF-8. mdbtools must have been compiled with iconv.
MDBOPTS semi-column separated list of options:
* use_index
* no_memo
* debug_like
* debug_write
* debug_usage
* debug_ole
* debug_row
* debug_props
* debug_all is a shortcut for all debug_* options
HISTORY
mdb-queries first appeared in MDB Tools 0.9.
SEE ALSO
mdb-export(1) mdb-hexdump(1) mdb-import(1) mdb-prop(1) mdb-sql(1) mdb-ver(1)
mdb-array(1) mdb-header(1) mdb-parsecsv(1) mdb-schema(1)
AUTHORS
The mdb-queries utility was written by Leonard Leblanc.