Connection Pooling with Access database
问题 I have an application which reads data from an Access databse frequently, is there any way to use connection pooling? My Open Databse method:- private bool OpenDatabaseConnection(string databaseName) { try { string connectionString = "Provider = Microsoft.Jet.OLEDB.4.0; " + "Data Source = " + databaseName + ";"; settingsDbConn = new OleDbConnection(connectionString); settingsDbConn.Open(); } catch (Exception) { return false; } return true; } 回答1: I concur with the comment of @sll but, to