mirror of
https://github.com/mdbtools/mdbtools.git
synced 2025-09-18 18:22:07 +08:00
Patch docs.diff from Nirgal
This commit is contained in:

committed by
Brian Bruns

parent
07f915b3c7
commit
dd0f4c3819
@@ -78,7 +78,7 @@ Of course these are my personal goals, and the direction of the project depends
|
||||
|
||||
<dl><a name="install"></a><dt><b>1.7 How do I install</b></dt><dd>
|
||||
<p>
|
||||
Consult the <a href="http://mdbtools.sourceforge.net/install/">installation guide</a> for details.
|
||||
Consult the <a href="https://raw.github.com/brianb/mdbtools/master/INSTALL">installation guide</a> for details.
|
||||
</p>
|
||||
</dd></dl>
|
||||
|
||||
|
@@ -7,5 +7,19 @@ SYNOPSIS
|
||||
DESCRIPTION
|
||||
gmdb2 is a GNOME UI for MDB Tools.
|
||||
|
||||
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
|
||||
|
||||
AUTHORS
|
||||
The gmdb2 utility was written by Brian Bruns
|
||||
|
@@ -10,5 +10,19 @@ DESCRIPTION
|
||||
mdb-array prints a C source code file to stdout, containing an array
|
||||
representing the data of the specified table.
|
||||
|
||||
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
|
||||
|
||||
AUTHORS
|
||||
The mdb-array utility was written by Brian Bruns
|
||||
|
@@ -1,5 +1,6 @@
|
||||
NAME
|
||||
mdb-export - Export data in an MDB database table to CSV format.
|
||||
|
||||
SYNOPSIS
|
||||
mdb-export [-H] [-d <delimiter>] [-R <row delim>] [[-Q] || [-q <quote> [-X <escape>]]] [-I] [-D <format>] <database> <table>
|
||||
|
||||
@@ -21,6 +22,20 @@ 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 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
|
||||
|
||||
HISTORY
|
||||
mdb-export first appeared in MDB Tools 0\.1
|
||||
|
||||
|
@@ -12,5 +12,19 @@ DESCRIPTION
|
||||
|
||||
It will create three files - types.h and dumptypes.[ch]
|
||||
|
||||
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
|
||||
|
||||
AUTHORS
|
||||
The mdb-header utility was written by Brian Bruns
|
||||
|
@@ -9,5 +9,19 @@ DESCRIPTION
|
||||
|
||||
mdb-hexdump makes a hex dump of a binary file (such as an mdb file).
|
||||
|
||||
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
|
||||
|
||||
AUTHORS
|
||||
The mdb-hexdump utility was written by Brian Bruns
|
||||
|
@@ -17,5 +17,19 @@ NOTES
|
||||
The file extension is stripped, and the output written to the base name
|
||||
plus a '.c' extension.
|
||||
|
||||
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
|
||||
|
||||
AUTHORS
|
||||
The mdb-parsecsv utility was written by Brian Bruns
|
||||
|
@@ -9,5 +9,23 @@ DESCRIPTION
|
||||
|
||||
Print a properties list from an MDB database.
|
||||
|
||||
<name> is the name of the table, querry, or other object.
|
||||
|
||||
<prop col> is the name of the system table MSysObjects' column containing properties. It defaults to LvProp.
|
||||
|
||||
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
|
||||
|
||||
AUTHORS
|
||||
The mdb-prop utility was written by Brian Bruns
|
||||
|
@@ -1,5 +1,6 @@
|
||||
NAME
|
||||
mdb-schema - Generate schema creation DDL
|
||||
|
||||
SYNOPSIS
|
||||
mdb-schema [options] <database> [<backend>]
|
||||
|
||||
|
@@ -58,6 +58,20 @@ NOTES
|
||||
|
||||
The -i command can be passed the string 'stdin' to test entering text as if using a pipe.
|
||||
|
||||
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-sql first appeared in MDB Tools 0\.3
|
||||
|
||||
|
@@ -1,5 +1,6 @@
|
||||
NAME
|
||||
mdb-tables - Get listing of tables in an MDB database
|
||||
|
||||
SYNOPSIS
|
||||
mdb-tables [-S] [-1 | -d<delimiter>] <database>
|
||||
|
||||
@@ -17,6 +18,20 @@ 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-tables first appeared in MDB Tools 0\.3
|
||||
|
||||
|
@@ -1,5 +1,6 @@
|
||||
NAME
|
||||
mdb-ver - Return the format of a given MDB database.
|
||||
|
||||
SYNOPSIS
|
||||
mdb-ver <database>
|
||||
|
||||
@@ -15,6 +16,20 @@ OPTIONS
|
||||
NOTES
|
||||
Access changed its format between Jet 3 used in Access 97 and Jet 4 used for Access 2000 and XP. The nature of the changes included moving the page size from 2K to 4K and added support for unicode. MDB Tools actively supports both formats.
|
||||
|
||||
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-ver first appeared in MDB Tools 0\.4
|
||||
|
||||
|
Reference in New Issue
Block a user