在xp系统下运行没有问题!
代码如下:
#region 建立连接
public static System.Data.OleDb.OleDbConnection GetConnection()
{
System.Data.OleDb.OleDbConnection l_connection  = null;
try
{
l_connection  = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source="+Application.StartupPath + @"\\_mySource03.mdb");
l_connection.Open();  
return l_connection;
}
catch(Exception ex)
{
return null;
}
finally
{
//l_connection.Close();
}
}
#endregion