次の方法で共有


Update (Command Interface)

注意

  この機能は、Microsoft SQL Server の次のバージョンで削除されます。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションはできるだけ早く修正してください。

The Update method of the Command interface saves the definition of a command object in the metadata repository.

Applies To:clsDatabaseCommand

構文

object.Update

パラメーター

  • object
    The command object to update.

説明

Use this method when you want to save changes to an object. Any changes made to an object will have session scope until this method is executed.

使用例

The following example locks a command object so that it can be modified. It then unlocks the object and updates its repository information.

'Assume a command object (dsoCmd) exists.
dsoCmd.LockObect OlapLockRead, "Updating command, please wait."
' (insert code to change command object here)
dsoCmd.Update
dsoCmd.UnlockObject

関連項目

参照