Find

Article
· Oct 20, 2024 2m read

第五十一章 安全元素的详细信息 - EncryptedKey 详情

第五十一章 安全元素的详细信息 - 详情

详情

该元素的各部分如下:

  • <EncryptionMethod> 表示用于加密对称密钥的算法。

IRIS 中,可以指定密钥传输算法(由 <EncryptionMethod>Algorithm 属性显示)。请参阅指定密钥传输算法。

Discussion (0)1
Log in or sign up to continue
Announcement
· Oct 20, 2024

投票受付中!:第2回 InterSystems Japan 技術文書ライティングコンテスト

開発者の皆さん、こんにちは!

🖋 InterSystems Japan 技術文書ライティングコンテスト2024:IRISに関連した記事 🖋の応募受付期間が終了し、残るは投票のみとなりました!

第2回目のコンテストは✨6作品✨の応募がありました!

コミュニティメンバーは「イイネ」 をクリックすることで投票できます。2024年10月31日(木)23時59分59秒 まで投票受付中です。

素晴らしい6作品のなかから、🔥これだ!🔥と思う記事の「イイネ」をクリックしてください。

以下、投票方法についてご案内します。

(1) 開発者コミュニティにログインする。

ログインアカウントをお持ちでない方は、コミュニティページ上部の  (下図赤枠)をクリックし、アカウント登録を行って下さい。

クリックした後の流れは「アカウント作成方法」の記事をご参照ください。

(2) 投稿記事一覧ページに移動します。

投稿記事を👀じっくり読みます👀

(3) 「いいね」をクリックします。

投稿記事一覧ページ上でクリックする場合はそれぞれの投稿画面左下にあるのマークをクリックします。クリック前はグレーの表示ですがクリック後に変わります。

各記事を参照している状態で「いいね」をクリックする場合は、画面左側にアイコン一覧が縦に並んでいますのでのマークをクリックします。

 

良い記事が見つかったらをクリックして作者を応援しましょう!📣

Discussion (0)1
Log in or sign up to continue
Question
· Oct 20, 2024

IRIS SQL - query nested collection property

I'm experimenting with adapting SDA3 object model to store medical data in relational form, e.g.:

class Demo.DemoPatient extends (%Persistent, HS.SDA3.Patient) {}

The HS.SDA3.Patient class has the Aliases property which is a nested collection (list) of objects of type HS.SDA3.Name:

6 Comments
Discussion (6)1
Log in or sign up to continue
Discussion (0)1
Log in or sign up to continue
Discussion
· Oct 19, 2024

Using EnsLib.SQL.Operation.GenericOperation

In the past, I've created custom SQL operations, but now I had something trivial to do, so I decided to take EnsLib.SQL.Operation.GenericOperation out for a spin. There's no example in the docs, so it was a little tricky. Here's what I ended up doing:

In my external database, I have 'mytable' with two fields 'id1' and 'id2'. Here are the pertinent Business Operation settings:

SQL: select id2 from mytable where id1 = ?
Input Parameters: [1] *id1
RequestClass: Ens.StringRequest
ResponseClass: MyResponseClass

To look up 'id2' for the row where 'id1' is "abc", I set 'StringValue' of my request to a JSON string: {"id1":"abc"}

For the result, 'MyResponseClass' has one property 'id2', i.e. identical to my select clause. The way I read the docs, it should be possible to get the result back as JSON in an 'Ens.StreamContainer', but I couldn't get this to work. Has anybody else had better luck?

2 Comments
Discussion (2)2
Log in or sign up to continue