Changeset 146 for trunk/Modules/IS/ModuleIS.pas
- Timestamp:
- Dec 29, 2023, 11:44:26 PM (11 months ago)
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/Modules/IS/ModuleIS.pas
r145 r146 1 unit UModuleIS;1 unit ModuleIS; 2 2 3 3 interface 4 4 5 5 uses 6 Classes, SysUtils, UModularSystem, USqlDatabase, UModuleBase, UGenerics;6 Classes, SysUtils, UModularSystem, USqlDatabase, ModuleBase, UGenerics; 7 7 8 8 type … … 27 27 28 28 uses 29 UCore, UPagePortal;29 Core, PagePortal; 30 30 31 31 { TModuleIS } … … 72 72 Data := TDictionaryStringString.Create; 73 73 74 Core.Co mmonDatabase.Query(DbRows,74 Core.Core.CommonDatabase.Query(DbRows, 75 75 'CREATE TABLE IF NOT EXISTS `User` (' + 76 76 ' `Id` int(11) NOT NULL AUTO_INCREMENT,' + … … 91 91 Data.Add('Salt', ''); 92 92 Data.Add('Email', ''); 93 Core.Co mmonDatabase.Insert('User', Data);93 Core.Core.CommonDatabase.Insert('User', Data); 94 94 95 Core.Co mmonDatabase.Query(DbRows,95 Core.Core.CommonDatabase.Query(DbRows, 96 96 'CREATE TABLE IF NOT EXISTS `UserOnline` (' + 97 97 ' `Id` int(11) NOT NULL AUTO_INCREMENT,' + … … 120 120 try 121 121 DbRows := TDbRows.Create; 122 Core.Co mmonDatabase.Query(DbRows, 'DROP TABLE IF EXISTS `User`');123 Core.Co mmonDatabase.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`'); 124 124 finally 125 125 DbRows.Free;
Note:
See TracChangeset
for help on using the changeset viewer.