다음을 통해 공유


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

참고 항목

참조