var fDesc=new Array(); fDesc[0] = "Colored syntax SQL Editor allows you to write any SQL statement and make database queries. It supported single and multiple execution mode and the possibility to save result in the export file.
Features:
Colored syntax, different colors on execution and errors
Multi-document program interface
Multi-threaded execution, possibility to stop execution
Execution SQL and PL/SQL blocks
Execution single and multiple SQL statement (scripts)
Explain Plan feature
Reading DBMS_OUTPUT stream
Error positioning
Saving statement history for established connection
Saving history of all SQL statements in external file
Export results to xls/scv 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 = ''; } }