Ignore:
Timestamp:
Oct 29, 2010, 10:44:13 PM (14 years ago)
Author:
george
Message:
  • Přidáno: Neodokončená třída TPageList a TQueryString.
  • Přidáno: Částečná podpora pro přihlašování uživatelů.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebServer/UHTTPSessionMySQL.pas

    r34 r36  
    6767  try
    6868    Lock.Acquire;
     69    DbRows := SqlDatabase.Query('DELETE FROM `HTTPSession` WHERE `Time` < DATE_SUB(NOW(), INTERVAL ' +
     70      IntToStr(Timeout) +' SECOND)');
     71    DbRows.Free;
    6972    DbRows := SqlDatabase.Query('SELECT * FROM `HTTPSession` WHERE `Identification`="' +
    7073      HandlerData.SessionId + '"');
     
    110113  Sessions := TStringList.Create;
    111114  SessionIdCookieName := 'SessionId';
    112   Timeout := 3600;
     115  Timeout := 3 * 3600;
    113116end;
    114117
Note: See TracChangeset for help on using the changeset viewer.