Ignore:
Timestamp:
Dec 29, 2023, 11:44:26 PM (9 months ago)
Author:
chronos
Message:
  • Modified: Unit names without U prefix.
File:
1 moved

Legend:

Unmodified
Added
Removed
  • trunk/Modules/IS/ModuleIS.pas

    r145 r146  
    1 unit UModuleIS;
     1unit ModuleIS;
    22
    33interface
    44
    55uses
    6   Classes, SysUtils, UModularSystem, USqlDatabase, UModuleBase, UGenerics;
     6  Classes, SysUtils, UModularSystem, USqlDatabase, ModuleBase, UGenerics;
    77
    88type
     
    2727
    2828uses
    29   UCore, UPagePortal;
     29  Core, PagePortal;
    3030
    3131{ TModuleIS }
     
    7272    Data := TDictionaryStringString.Create;
    7373
    74     Core.CommonDatabase.Query(DbRows,
     74    Core.Core.CommonDatabase.Query(DbRows,
    7575    'CREATE TABLE IF NOT EXISTS `User` (' +
    7676    '  `Id` int(11) NOT NULL AUTO_INCREMENT,' +
     
    9191    Data.Add('Salt', '');
    9292    Data.Add('Email', '');
    93     Core.CommonDatabase.Insert('User', Data);
     93    Core.Core.CommonDatabase.Insert('User', Data);
    9494
    95     Core.CommonDatabase.Query(DbRows,
     95    Core.Core.CommonDatabase.Query(DbRows,
    9696    'CREATE TABLE IF NOT EXISTS `UserOnline` (' +
    9797    '  `Id` int(11) NOT NULL AUTO_INCREMENT,' +
     
    120120  try
    121121    DbRows := TDbRows.Create;
    122     Core.CommonDatabase.Query(DbRows, 'DROP TABLE IF EXISTS `User`');
    123     Core.CommonDatabase.Query(DbRows, 'DROP TABLE IF EXISTS `UserOnline`');
     122    Core.Core.CommonDatabase.Query(DbRows, 'DROP TABLE IF EXISTS `User`');
     123    Core.Core.CommonDatabase.Query(DbRows, 'DROP TABLE IF EXISTS `UserOnline`');
    124124  finally
    125125    DbRows.Free;
Note: See TracChangeset for help on using the changeset viewer.