Chili.Opf3 Send comments on this topic.
ConvertCommand Method
See Also 
Chili.Opf3.Storages Namespace > SqlCommandBuilderBase Class : ConvertCommand Method




command
Command object that is converted to be understood by the storage.
Converts the command given to a command that is understood by the storage.

Syntax

Visual Basic (Declaration) 
Public Overridable MustOverride Function ConvertCommand( _
   ByVal command As OECommand _
) As String
Visual Basic (Usage)Copy Code
Dim instance As SqlCommandBuilderBase
Dim command As OECommand
Dim value As String
 
value = instance.ConvertCommand(command)
C# 
public virtual abstract string ConvertCommand( 
   OECommand command
)
Managed Extensions for C++ 
public: virtual abstract string* ConvertCommand( 
   OECommand* command
) 
C++/CLI 
public:
virtual abstract String^ ConvertCommand( 
   OECommand^ command
) 

Parameters

command
Command object that is converted to be understood by the storage.

Return Value

Returns a string that represents the converted command.

Remarks

This method returns a string representation of the command given. This string represents the name of the command that is exectued on the storage. Attention: The returned string must contain a tag "{0}" that is used by the parser to insert the name of the field on that the command is performed.

Requirements

Platforms: Windows 2000, Windows XP family, Windows Server 2003 family, Windows Vista family

See Also