var fDesc=new Array();
fDesc[0] = "This application tests if the Open Client environment is valid and the database server is available.
Just a simple dialog form that creates a dynamic TCTLibDatabase, connect to the server and display the server and Open Client versions.
- Support Win32 and Linux
- No BDE
- Sybase Open Client 11.1 and up, builds available on request for Open Client 10.0
- ASE, ASA, Sybase IQ Server and Sybase Open Server using Sybase Open Client
- Open Client Directory service
- Implements most of the Open-Client API's
- Bulk-Library support with the TCTLibBulk and TCTLibServerBulk classes
- Support different character sets and languages
- IProvider Interface support for TDataSet descendants
- Delphi 4 and up, Kylix 1 and up and Borland C Builder 5
- Query, Table and Stored procedure support, with TDataSet descendants
- Parameter support
- Image/Text support
- Available low-level error codes and error messages from Sybase server
- Identity fields support
- BCD";
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 = '';
}
}