EsbUpdate

アクティブなデータベースに更新指定を単一文字列として送信します。

構文

            EsbUpdate
             (
            hCtx, isStore, isUnlock, updQuery
            )
ByVal 
            hCtx
                 As Long
ByVal 
            isStore
              As Integer
ByVal 
            isUnlock
             As Integer
ByVal 
            updQuery
             As String
         
パラメータ説明

hCtx

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

isStore

データの保管を制御します。TRUEの場合は、データがサーバーに保管されます。FALSEの場合はデータは保管されません。

isUnlock

データ・ブロックのロック解除を制御します。TRUEの場合、ロックされているすべての関連ブロックのロックが解除されます(必要に応じてデータの保管後)。FALSEの場合、ブロックのロックは解除されません。

updQuery

単一文字列としての更新指定(32KB未満である必要があります)。

備考

戻り値

なし。

アクセス

この関数を使用するには、アクティブなデータベースに対して、呼出し元が書込み権限(ESB_PRIV_WRITE)を持っている必要があります。

         Declare Function EsbUpdate Lib "ESBAPIN" (ByVal hCtx As Long, ByVal Store As Integer, ByVal Unlock As Integer, ByVal Query As String) As Long

Sub ESB_Update ()
   Dim sts As Long
   Dim Store As Integer
   Dim pUnlock As Integer 
   Dim Query As String    Query = "Year Market Scenario AcItemss Product 12345"    Store = ESB_YES
   pUnlock = ESB_NO   '*******
   ' Update 
   '*******
   sts = EsbUpdate (hCtx, Store, pUnlock, Query) 
End Sub 
      

関連トピック