Codeunit 4108 Persistent Blob Impl.

App
System Application
Namespace
System.Utilities
Versions
17-28

Procedures, 5

Versions171819202122232425262728

Source242526272829

Source in 29

src/System Application/App/BLOB Storage/src/PersistentBlobImpl.Codeunit.al67 lines, Copyright (c) Microsoft Corporation. MIT

// ------------------------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
// ------------------------------------------------------------------------------------------------

namespace System.Utilities;

codeunit 4108 "Persistent Blob Impl."
{
    Access = Internal;
    InherentEntitlements = X;
    InherentPermissions = X;
    Permissions = tabledata "Persistent Blob" = rimd;

    procedure Create() "Key": BigInteger
    var
        PersistentBlob: Record "Persistent Blob";
    begin
        PersistentBlob.Insert();
        Key := PersistentBlob."Primary Key";
    end;

    procedure Exists("Key": BigInteger): Boolean
    var
        PersistentBlob: Record "Persistent Blob";
    begin
        PersistentBlob.SetRange("Primary Key", Key);
        exit(not PersistentBlob.IsEmpty());
    end;

    procedure Delete("Key": BigInteger): Boolean
    var
        PersistentBlob: Record "Persistent Blob";
    begin
        if PersistentBlob.Get(Key) then
            exit(PersistentBlob.Delete());
    end;

    procedure CopyFromInStream("Key": BigInteger; SourceInStream: InStream): Boolean
    var
        PersistentBlob: Record "Persistent Blob";
        DestinationOutStream: OutStream;
    begin
        if not PersistentBlob.Get(Key) then
            exit(false);

        PersistentBlob.Blob.CreateOutStream(DestinationOutStream);
        if not CopyStream(DestinationOutStream, SourceInStream) then
            exit(false);
        exit(PersistentBlob.Modify());
    end;

    procedure CopyToOutStream("Key": BigInteger; DestinationOutStream: OutStream): Boolean
    var
        PersistentBlob: Record "Persistent Blob";
        SourceInStream: InStream;
    begin
        if not PersistentBlob.Get(Key) then
            exit(false);

        PersistentBlob.CalcFields(Blob);
        PersistentBlob.Blob.CreateInStream(SourceInStream);
        exit(CopyStream(DestinationOutStream, SourceInStream));
    end;
}