EsbCreateVariable

代替変数を新規作成、または同一のサーバー値、アプリケーション値およびデータベース値を持つ変数名がすでに存在している場合には既存の代替変数を変更します。

構文

            EsbCreateVariable
             (
            hCtx, pVariable
            )
ByVal 
            hCtx
                  As Long
      
            pVariable
             As ESB_PVARIABLE_T 
         
パラメータ説明

hCtx

APIコンテキスト・ハンドル。

pVariable

作成された代替変数の説明を含む構造体を指すポインタ。

備考

戻り値

成功の場合、ゼロが戻されます。

         Declare Function EsbCreateVariable Lib "esbapin" (ByVal hCtx As Long, pVariable As ESB_VARIABLE_T) As Long

Sub Esb_CreateVariable()

Dim sts As Long
Dim oVariable As ESB_VARIABLE_T

'  Create "QuarterName" Susbtitution Variable at the Sample application level
   oVariable.Server = "Localhost"
   oVariable.AppName = "Sample"
'  ** Note that DbName has been left empty
   oVariable.VarName = "QuarterName"
   oVariable.VarValue = "Qtr1"

   sts = EsbCreateVariable(hCtx, oVariable)

End Sub
      

関連トピック