0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

VB.NETでInterSystems Cache'の派生クラス(テーブル)を取り扱う方法

Last updated at Posted at 2018-08-30

ODBらしくなってきました。

前回作ったTestClassをベースにします。
派生クラスをTestClassInhelitという名前で作成します。Extendsを選び、User.Main.TestClassを設定します。
20180830-1.PNG
20180830-2.PNG
派生クラスを次のように記述します。
20180830-3.PNG

★☆重要
StudioのTestClassの基底クラスに、次のコードを追加します。これは、VBで操作する際、Cache'に取り込んだクラスの規定動作が、(operator =)に対して「データベースアドレスを代入する」という動きになり、よく使われる(代入する)の動きになりません。それを実現するのがこのGetClone関数です。

TestClass.cls

Method GetClone(deep As %String = 1) As User.Main.TestClass [ Language = cache ]
{
		   //OK
           Quit ..%ConstructClone(deep)
}

20180830-6.PNG

VB.NETに設定したObjectBindingの機能で、TestClassとTestClassInhelitを>で取り出し、Generateボタンで生成して、VB.NETの「追加→既存の項目」でObjectBinding2.vbを追加します。
20180830-4.PNG

VB.NET側で、Button3を作り、次のように記述します。GetCloneを使う個所に注目してください。なお、オブジェクト指向プログラミングにおける派生クラスのキャストと同様に、基底クラスで生成された変数は(派生クラス型のデータ)をすべて持つことになります。
20180830-5.PNG

Button3_Click()

Private Sub Button3_Click(sender As Object, e As EventArgs) Handles Button3.Click

        '派生クラスを呼ぶ方法
        Dim cacheConnectStr As String = "Server = localhost; Port=1972;" +
               "Log File = C:\VSProject\NewCarte\NewCarte\NewCarte\bin\NewCarte.log; Namespace = USER;" +
               "Password = yourpass; USER ID = yourid"
        Dim cnCache As CacheConnection = New CacheConnection(cacheConnectStr)
        cnCache.Open()

        Dim d2 As User.Main.TestClassInhelit
        d2 = New User.Main.TestClassInhelit(cnCache)
        d2.name = "Nakagawa Saburou"
        d2.age = 34
        d2.name2 = "Sanchan"
        d2.age2 = 35
        d2.Save()
        d2.Close()

        'そもそも、Cache'クラスにおける(operator =)は、「同じデータベースの箇所」を参照することになるので、以下のように記述する
        Dim d11 As New User.Main.TestClass(cnCache)
        d11 = d2.GetClone("1")  '★注意:d11=d2とすると、単にd2と同じレコードを参照してしまう!
        '★注意:d22 = TryCast(d1, User.Main.TestClass) 、 d22 = d1.GetClone("1")はいずれもエラーになる!
        'd11はTestClassInhelitのデータをすべて持つ
        d11.Save()
        d11.Close()

    End Sub

実行結果(ID=20が、基本クラスでインスタンスを生成し、派生クラスのキャストをして保存した結果。基本、Cache'はMUMPSの柔軟性を生かし、データが消える側にデータ操作をしない傾向にある。)
20180830-7.PNG
20180830-8.PNG

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?