LoadModule: IModule;
LoadModule: Prognoz.Platform.Interop.Metabase.IModule;
The LoadModule method loads and saves the unit into repository.
The method saves the unit in accordance with the parameters specified in the CreateInfo property. If there is an object in the repository that has the same identifier with the unit being loaded, the exception is thrown.
Executing the example requires the c:\Module_1.ppmodule file containing the saved platform unit.
Sub UserProc;
Var
MB: IMetabase;
Fs: IForeSerializer;
Loader: IForeSerializerLoader;
Id: String;
Begin
MB := MetabaseClass.Active;
Fs := New ForeSerializer.Create;
Loader := Fs.CreateLoaderFromFile("c:\Module_1.ppmodule", MB);
Id := Loader.CreateInfo.Id;
If MB.ItemById(Id) <> Null Then
Loader.CreateInfo.Id := MB.GenerateId(Id);
Loader.CreateInfo.Name := Loader.CreateInfo.Name + "_Copy";
End If;
Loader.CreateInfo.Parent := MB.Root;
Loader.LoadModule;
End Sub UserProc;
The unit is loaded from the specified file during example execution. The unit is saved in the repository root. If there is an object in the repository that has the same identifier with the unit being loaded, the unit identifier is changed before the loading.
The requirements and result of the Fore.NET Example execution match with those in the Fore Example.
Public Shared Sub Main(Params: StartParams);
Var
MB: IMetabase;
Fs: IForeSerializer = New ForeSerializerClass();
Loader: IForeSerializerLoader;
Id: String;
Begin
MB := Params.Metabase;
Loader := Fs.CreateLoaderFromFile("c:\Module_1.ppmodule", MB);
Id := Loader.CreateInfo.Id;
If MB.ItemById[Id] <> Null Then
Loader.CreateInfo.Id := MB.GenerateId(Id, 0);
Loader.CreateInfo.Name := Loader.CreateInfo.Name + "_Copy";
End If;
Loader.CreateInfo.Parent := MB.Root;
Loader.LoadModule();
End Sub;
See also: