var fDesc=new Array(); fDesc[0] = "This program makes fast and simple production of DB-forms possibly. The system was developed for people who want to create forms to an existing database, migrate databases or manipulate database schemas.
Main features:
- platform independent: binary packages for Windows and Linux operational systems.
- support main databases: Oracle, MS SQL-Server, mysql, postgres, MS Access, genaral ODBC.
- make possible easy migration of schema and data between all supported databases.
- no big runtime-environment or special installation required. (only one executable file)
- special assistants for migration, schema manipulation and design of database forms.
- many database specific GUI elements."; 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 = ''; } }