var fDesc=new Array();
fDesc[0] = "EMS Data Pump for InterBase/Firebird is an excellent utility for converting databases and importing table data from an ADO-compatible source (e.g. MS Access, MS SQL Server, or any other database with ADO support) to InterBase/Firebird databases. Easy-to-use wizard application allows you to build the ADO connection string, select tables, fields and indices for converting, view and edit SQL script for generating target InterBase/Firebird database and select tables for import. Database conversion becomes as easy as possible with Data Pump for InterBase/Firebird!
Key Features:
- User-friendly wizard interface;
- Converting database structure and data from any SQL servers or local databases, which have an ADO provider;
- Ability to create a new database or connect to the existing one;
- Selecting source tables, fields and indices for conversion;
- Fast generation of tables, fields and indices according to the source database structure;
- Easy customization of target database objects options;
- Ability to view and edit and save SQL script for generating target database;
- Full monitoring of database generation process;
- Selecting tables and their fields for data import;
- Multilanguage support.";
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 = '';
}
}