LEADTOOLS Medical (Leadtools.Medical.Workstation.DataAccessLayer assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.30
InitializeUpdateConfigurationCommand Method
See Also 
Leadtools.Medical.Workstation.DataAccessLayer Namespace > WorkstationSqlDataAccessAgent Class : InitializeUpdateConfigurationCommand Method




updateConfigurationCommand
The System.Data.Common.DbCommand to be initialized.
componentName
The component name having the configuration being updated.
data
A System.String representing the configuration data.
updateConfigurationCommand
The System.Data.Common.DbCommand to be initialized.
componentName
The component name having the configuration being updated.
data
A System.String representing the configuration data.
Initializes a System.Data.Common.DbCommand to update a component's configuration data.

Syntax

Visual Basic (Declaration) 
Overrides Protected Sub InitializeUpdateConfigurationCommand( _
   ByVal updateConfigurationCommand As DbCommand, _
   ByVal componentName As String, _
   ByVal data As String _
) 
Visual Basic (Usage)Copy Code
Dim instance As WorkstationSqlDataAccessAgent
Dim updateConfigurationCommand As DbCommand
Dim componentName As String
Dim data As String
 
instance.InitializeUpdateConfigurationCommand(updateConfigurationCommand, componentName, data)
C# 
protected override void InitializeUpdateConfigurationCommand( 
   DbCommand updateConfigurationCommand,
   string componentName,
   string data
)
Managed Extensions for C++ 
protected: void InitializeUpdateConfigurationCommand( 
   DbCommand* updateConfigurationCommand,
   string* componentName,
   string* data
) override 
C++/CLI 
protected:
void InitializeUpdateConfigurationCommand( 
   DbCommand^ updateConfigurationCommand,
   String^ componentName,
   String^ data
) override 

Parameters

updateConfigurationCommand
The System.Data.Common.DbCommand to be initialized.
componentName
The component name having the configuration being updated.
data
A System.String representing the configuration data.

Remarks

Override this method to provide the database specific behavior for updating a component configuration data.

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7

See Also