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




In This Topic
    ParamKeySqlDbType Property
    In This Topic
    The SqlDbType System.Data.SqlDbType of SqlParameter. This is the SQL data type of the primary key of the table used to store and retrieve images. If this is specified, then a data type check will be performed when adding the parameter to construct the SqlCommand used to execute the query. This is required in order for a length check to be performed on SqlParameter with ParamKeyLength.
    Syntax
    'Declaration
     
    Public ReadOnly Property ParamKeySqlDbType As Nullable(Of SqlDbType)
    'Usage
     
    Dim instance As MarkupSqlImageDataProvider
    Dim value As Nullable(Of SqlDbType)
     
    value = instance.ParamKeySqlDbType
    public Nullable<SqlDbType> ParamKeySqlDbType {get;}
    public: __property Nullable<SqlDbType> get_ParamKeySqlDbType();
    public:
    property Nullable<SqlDbType> ParamKeySqlDbType {
       Nullable<SqlDbType> get();
    }
    Example
    "VarChar"
    See Also