pkahal
March 9th, 2005, 10:28 PM
The 3 lines code below is causing me to lose Handles (on the Task Manager). So that my resource (the Handles) is not being released.
using(OleDbConnection _Connection = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=dBASE IV;User ID=;Password=;Data Source=c:\\CT"))
{
_Connection.Open();
_Connection.Close();
}
Code executes properly if I have no BDE (Borland Database Engine) installed on my machine. But I cannot live without BDE since it is needed by other applications.
Got a tool to know of process information from http://www.sysinternals.com/ntw2k/freeware/procexp.shtml
using(OleDbConnection _Connection = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Extended Properties=dBASE IV;User ID=;Password=;Data Source=c:\\CT"))
{
_Connection.Open();
_Connection.Close();
}
Code executes properly if I have no BDE (Borland Database Engine) installed on my machine. But I cannot live without BDE since it is needed by other applications.
Got a tool to know of process information from http://www.sysinternals.com/ntw2k/freeware/procexp.shtml