ImageGear .NET v25.2 - Updated
ImageGear.Web.Services Assembly / ImageGear.Web.DataProviders Namespace / MarkupSqlImageDataProvider Class / SqlArtUpdateCommand Property




In This Topic
    SqlArtUpdateCommand Property
    In This Topic
    The SQL query or stored procedure used to update art documents which already exist in the table used to store annotations
    Syntax
    'Declaration
     
    Public ReadOnly Property SqlArtUpdateCommand As String
    'Usage
     
    Dim instance As MarkupSqlImageDataProvider
    Dim value As String
     
    value = instance.SqlArtUpdateCommand
    public string SqlArtUpdateCommand {get;}
    public: __property string* get_SqlArtUpdateCommand();
    public:
    property String^ SqlArtUpdateCommand {
       String^ get();
    }
    Remarks
    Required.
    Example
    "UPDATE dbo.Annotations SET ArtData = @artData WHERE DocumentID = @documentId and MarkupID = @markupId;"
    See Also