var fDesc=new Array();
fDesc[0] = "Database Desktop, SQL manager, merge data, data comparison and many more function in one software. It accomodate a simple admittance to datasets like other database handling products. Firstly it doesn't concentrate maintenance of datasets, but offer up users lot of built functions never a product before.
Shortly it's proud of the most important functions:
- Data manipulation between two datasets: Help user to import & export datas with macros and functions (merge datas).
- Compare two dataset by user specified unique fields.
- Multiple SQL Editors Script Executing (SQL Manager): SQL edit, history of executed scripts, processing, watching.
- Powerful data managing tools: data manipulation, create, copy, print, import & export other databases, etc.
- Now the program supported the following database types: Ms Access, Ms Excel, DB2, INFORMIX, INTERBASE 6, MSSQL, ORACLE, SQL Server, SYBASE, MySql(ODBC), Foxpro, Paradox, dBase, text driver(.csv)
And some other useful features:
- Searching datas by barcode scanner
- Viewing / Editing data in tables
- Multiple database connections
- Export data to four formats (Excel, clipboard, csv, xml files)";
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 = '';
}
}