var fDesc=new Array(); fDesc[0] = "DB2LobEditor is a database tool that helps DBA and Database Programmer edit DB2 LOB (BLOB, CLOB) data directly.

Unlike other database tools that export LOB data to file and calling external editor to view or edit the file then import the modified data to database one by one, DB2LobEditor's easy-to-use editor let you edit LOB data directly and uninterruptedly.

Main features:
- Edit LOB (BLOB, CLOB) data directly.
- Batch import/export LOB data.
- Save importing/exporting LOB work as task, convenient to repeat.
- Support Command-Line Scripts, Scheduled saved importing/exporting LOB task.
- One editor for multiple formats (plain text,RTF,image,hex,html,xml...).
- Easy to view image data (JPEG, GIF, BMP, PNG, TIFF...) .
- Support editing binary type data.
- Calling external tool to use more powerful editing functions.
- Hexadecimal mode to edit unknown type data."; 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 = ''; } }