欢迎进入linux社区论坛,与200万技术人员互动交流 >>进入
deeplin 11.6,在软件中心中搜mdbtools所有的包进行安装,应该是四个,一个基本包,一个devel包,一个lib包,一个gmdb(图形界面包)
前者是核心组件,后者是图形界面操作组件。
安装完成后,在“办公”下面有一上mdb viewer.或在命令行下输入“gmdb2.
附帮助文件中的内容:this will build some useful utilities:
mdb-ver ―― prints the version (jet 3 or 4) of an mdb file 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 mdb-sql ―― if ――enable-sql is specified, a simple sql engine (also used by odbc and gmdb)。
gmdb2 ―― a graphical utility to browse mdb files.
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.
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. you can then run 'make install' as root to install (to /usr/local by default)。
