var fDesc=new Array(); fDesc[0] = "PCase is a CASE-tool which allows to insert and view the design of a structure from a relational database graphically using an entity relationship diagramm (ERD). With this easy to use tool Progress databases can be generated and updated directly. The structure of an existing Progress database can be read and shown as an ERD. Besides you can generate standard triggers and maintain database versions.
PCase is uniquely made for complete integration into PROGRESS. Most parts are written in the PROGRESS 4 GL, so it can interact directly with databases. No more "store your design to disk, create a database, create a delta.df, load it in your target 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 = ''; } }