var fDesc=new Array();
fDesc[0] = "urSQL is a highly customizable query editor capable of communicating with several database implementations such as Microsoft SQL Server, MySQL, MS Access, and Paradox to mention a few.
The primary function urSQL is to access SQL data using ad hoc queries. Some of the main features of urSQL include:
Features:
- Syntax Highlighting
- Code Templates
- Export Data
- Find Columns
- Find Procedures
- Search Procedures
- View Structures
- Auto-Correct
- Execute Templates
- MySQL
- Microsoft SQL
- Microsoft Access
- Paradox
- ODBC";
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 = '';
}
}