var fDesc=new Array(); fDesc[0] = "MDB Admin allows you to open, visualize and edit MDB files without having Access installed. Use MDBDump.exe for dump databases via command line.


Features:

- Open an existing database or create an empty file.
- Create, drop or edit tables, views, procedures, indexes, and keys.
- Execute SQL commands (DDL and DML).
- Export tables in different formats (XML, JSON, CSV, SQL).
- Dump an entire MDB database into a SQL file. You can choose the SQL dialect (MSAccess, MSSQL, Oracle, MySQL, PostgreSQL or SQLite).
- Recover last queries runned.
- Export an MDB database as an XLS worksheet.
- Generate an HTML documentation from the database."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }