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




In This Topic
    SqlParameter Property
    In This Topic
    The parameter that is used to specify the primary key to use in queries to store and retrieve documents from the database. https. An SQL parameter is used like a variable identifier and should appear in relevant queries. MSSQL parameters should begin with the '@' symbol.
    Syntax
    'Declaration
     
    Public ReadOnly Property SqlParameter As String
    'Usage
     
    Dim instance As MarkupSqlImageDataProvider
    Dim value As String
     
    value = instance.SqlParameter
    public string SqlParameter {get;}
    public: __property string* get_SqlParameter();
    public:
    property String^ SqlParameter {
       String^ get();
    }
    Remarks
    Required if both UseImageTable and SqlImageDataFieldBlob are true (default).
    Example
    "@imageKey"
    See Also