[Web] Fix obvious typo in DELETE FROM WHERE statement.
[mono.git] / mcs / class / System.Web / System.Web.SessionState_2.0 / SessionSQLServerHandler.cs
index a18cc9a25d4067eb8b25b43d8f820423c35e03eb..58b23fa13a7d3ec50e0828cdb98171e802e070f7 100644 (file)
@@ -448,7 +448,7 @@ namespace System.Web.SessionState
                        DbProviderFactory factory = ProviderFactory;
                        DbConnection conn = CreateConnection (factory);
                        DbCommand cmd = CreateCommand (factory, conn,
-                                                      "DELETE FROM Sessions WHERE SessionId = @SessionId AND ApplicationName = @ApplicationName AND LockId = @LockId");
+                                                      "DELETE FROM Sessions WHERE SessionId = @SessionId AND ApplicationName = @ApplicationName AND LockId = @LockId");
 
                        DbParameterCollection parameters = cmd.Parameters;
                        parameters.Add (CreateParameter <string> (factory, "@SessionId", id, 80));