I have a very basic Logger class:
public class Logger
{
public static void Log(string message)
{
mySqlClassInDAL.ExecuteNonQuery(string.Format("Insert into LogTable (msg) values ({0})",message));
}
}
I use it as such:
try
{
PlayGame("Angry Pigs");
}
catch
{
Logger.Log("Can't Play Game");
}
Using the logger makes the app run very slow, the process takes about 2 minutes to run from start to finish (if I comment out the code in the Log method). Otherwise, using the logger to log events, errors and etc. results in the app running in 5 mins.
How can one overcome this issue? Do you suggest I collect the Logs in a DataTable and then dump then bulk dump them into the DataBase Table at the end of the app? But I want to be able to log in real time.
I should have included this initially:
I believe it's how I'm doing things the DAL:
public int ExecuteNonQuery(string NonQuery)
{
using (SqlConnection sc = new SqlConnection(AppConnectionString))
{
SqlCommand sqlCommand = new SqlCommand(NonQuery, sc);
sqlCommand.Connection.Open();
return sqlCommand.ExecuteNonQuery();
}
}
When I run SQL Profiler here's what I see:
Audit Login -- network protocol: TCP/IP
RPC:Completed exec sp_executesql N'INSERT INTO ...
Audit Logout
RPC:Completed exec sp_reset_connection
Audit Login -- network protocol: TCP/IP
RPC:Completed exec sp_executesql N'INSERT INTO ...
Audit Logout
RPC:Completed exec sp_reset_connection
...
I think if I can avoid having 'sp_reset_connection' executed, I can overcome this issue.
UPDATE:
In order to test the suggestions given here. I created a class with the following methods:
- ExecuteNonQuery(string NonQuery) : same ExecuteNonQuery method posted above
- ExecuteNonQuery(string NonQuery, List params) : executes query by adding parameters
- ExecuteNonQuery2(string NonQuery, List params) : same as above but does not open connection each time, connection needs to be open when using this method
- ExecuteSP(string SPName, List parameterValues) : executes stored procedure
- ExecuteSP2(string SPName, List parameterValues) : same as #4 but connection needs to be open before using this method
Now here's how I created the code to test each of the above methods:
Console.WriteLine(DateTime.Now);
for (int i = 0; i < 1000; i++)
{
ExecuteNonQuery(string.Format("INSERT INTO LogTable ... ", (i+baseNo).ToString()));
ExecuteNonQuery("UPDATE Customers... Where ID = " + (i+baseNo).ToString());
}
Console.WriteLine(DateTime.Now);
.
.
.
for (int i = 0; i < 1000; i++)
{
List<object> parameterValues = new List<object> { "abc", 1, (i+baseNo).ToString() };
ExecuteSP("INSERTINTOLOG", parameterValues);
ExecuteSP("UPDATECustomers", new List<object> { i+baseNo });
}
Console.WriteLine(DateTime.Now);
.
.
.
Here is the result I get:
2:25:46 - represents time app started
2:27:18 - first loop for running first method is complete
2:28:47
2:30:14
2:31:47
2:33:17 - time 5th loop for running 5th method (ExecuteSP2) is complete
Check out the time diffs (almost no diff among them):
in 1:32 - executes 2000 raw sql commands. (in 1 min 32 seconds).
in 1:29 - executes sql commands with params
in 1:27 - while connection is open, executes sql commands with params
in 1:33 - executes SP
in 1:30 - executes SP while connection is open
On a separate note, why was one of the answers deleted?
Logmethod does nothing and just returns? – John Saunders Dec 7 '11 at 2:53