Поделиться через


Update (Command Interface)

ms135510.note(ru-ru,SQL.90).gifПримечание.
  В следующей версии 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

См. также

Справочник

Command Interface

Справка и поддержка

Получение помощи по SQL Server 2005