I'm developing a text analysis desktop application, that intensively queries local database (MSSQLCE 3.5). As the user throws text in, it should react in real-time, so I'm using ADO.NET with pure SQL and trying to get the best performance results.
The question is: based on my task, should I keep ONE cached connection (as static variable or singleton) and make queries with CommandBehavior.Default or should I build a new connection for each query and specify CommandBehavior.CloseConnection?
I know that usually it's recommended to close connection ASAP, but should I really do it, if there can be thousands of queries per minute, for example when user pastes a huge text?
Until now, application worked on CloseConnection. Now I tried to turn it to CommandBehavior.Default with single connection. I can see some small performance speed-up and can't see any problems at this time, but I want to know if there are any strings attached, before I put this to deployment.
// one cached connection for all queries
private static DbConnection _connection = null;
public static String MakeQuery()
{
if (_connection == null)
{
_connection = new SqlCeConnection(...);
_connection.Open();
}
var cmd = new SqlCeCommand("...", _connection);
using (var reader = cmd.ExecuteReader(CommandBehavior.Default))
{
}
}
vs.
// new connection for each query
public static String MakeQuery()
{
using (var connection = new SqlCeConnection(...))
{
connection.Open();
var cmd = new SqlCeCommand("...", connection);
using (var reader = cmd.ExecuteReader(CommandBehavior.CloseConnection))
{
...
}
}
}