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/TV/ModuleTV.pas

    r145 r146  
    1 unit UModuleTV;
     1unit ModuleTV;
    22
    33interface
    44
    55uses
    6   Classes, SysUtils, UModularSystem, UModuleBase, UWebPage;
     6  Classes, SysUtils, UModularSystem, ModuleBase, UWebPage;
    77
    88type
     
    2828
    2929uses
    30   UCore, UPageTV, USqlDatabase;
     30  Core, PageTV, USqlDatabase;
    3131
    3232{ TModuleTV }
     
    7373    DbRows := TDbRows.Create;
    7474
    75     Core.CommonDatabase.Query(DbRows,
     75    Core.Core.CommonDatabase.Query(DbRows,
    7676    'CREATE TABLE IF NOT EXISTS `TV` (' +
    7777    '  `Id` int(11) NOT NULL AUTO_INCREMENT,' +
     
    102102  try
    103103    DbRows := TDbRows.Create;
    104     Core.CommonDatabase.Query(DbRows, 'DROP TABLE IF EXISTS `TV`');
     104    Core.Core.CommonDatabase.Query(DbRows, 'DROP TABLE IF EXISTS `TV`');
    105105  finally
    106106    DbRows.Free;
Note: See TracChangeset for help on using the changeset viewer.