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




In This Topic
    SqlArtInsertCommand Property
    In This Topic
    The SQL query or stored procedure used to insert a new art document into the annotations table
    Syntax
    'Declaration
     
    Public ReadOnly Property SqlArtInsertCommand As String
    'Usage
     
    Dim instance As MarkupSqlImageDataProvider
    Dim value As String
     
    value = instance.SqlArtInsertCommand
    public string SqlArtInsertCommand {get;}
    public: __property string* get_SqlArtInsertCommand();
    public:
    property String^ SqlArtInsertCommand {
       String^ get();
    }
    Example
    "INSERT INTO dbo.Annotations (DocumentID, MarkupID, ArtData, MarkupName) VALUES (@documentId, @markupId, @artData, @markupName);"
    See Also