var fDesc=new Array();
fDesc[0] = "STATEMENT TRACER for ORACLE is an effective and easy-to-use free solution for debugging programs interfacing with the Oracle RDBMS.
Just run the Statement Tracer and you will get all the information you need.
- Is a very time-effective tool for application development and debugging.
- Allows technical support engineer and database administrator to find a problem without help from developer.
- Gives evaluation of your application performance in a real life in order to identify possible problem areas.";
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 = '';
}
}