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




In This Topic
    SqlInsertCommand Property
    In This Topic
    The SQL query or stored procedure used to insert documents into the database
    Syntax
    'Declaration
     
    Public ReadOnly Property SqlInsertCommand As String
    'Usage
     
    Dim instance As MarkupSqlImageDataProvider
    Dim value As String
     
    value = instance.SqlInsertCommand
    public string SqlInsertCommand {get;}
    public: __property string* get_SqlInsertCommand();
    public:
    property String^ SqlInsertCommand {
       String^ get();
    }
    Example
    "INSERT INTO dbo.Documents (DocumentID, ImageData) VALUES (@imageKey, @imageData);"
    See Also