var fDesc=new Array();
fDesc[0] = "dotConnect for SQLite is an enhanced ORM enabled data provider for SQLite that builds on ADO.NET technology to present a complete solution for developing SQLite-based database applications. It introduces new approaches for designing application architecture, boosts productivity, and leverages database applications.
Features:
- Enables Integration Services to export and import data to/from SQLite servers.
- Allows per-component tracing of database events with a free dbMonitor application.
- Provides a powerful SQLiteDataTable component for manipulating individual tables or query result.
- Can be used in conjunction with Microsoft Enterprise Library Data Access Application Block.";
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 = '';
}
}