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




In This Topic
    SqlImageDataFieldBlob Property
    In This Topic
    Indicates whether the table used for the storage of documents in the database contains the actual documents, or an alternate mapping of Document IDs to file names in the file system from StorageRootPath. If this is true, then documents are stored directly in and retrieved directly from the database. If it is false, then the content of the data field in the table used for storing documents will be retrieved and interpreted as the Document ID, effectively using the documents table as a mechanism for creating an alternate mapping for Document IDs to the file system.

    A new property, UseImageTable UseImageTable, has been added to this DataProvider UseImageTable which indicates that a Document table will not be used at all and Document IDs will be directly routed to StorageRootPath in the file system.

    Syntax
    'Declaration
     
    Public ReadOnly Property SqlImageDataFieldBlob As Boolean
    'Usage
     
    Dim instance As MarkupSqlImageDataProvider
    Dim value As Boolean
     
    value = instance.SqlImageDataFieldBlob
    public bool SqlImageDataFieldBlob {get;}
    public: __property bool get_SqlImageDataFieldBlob();
    public:
    property bool SqlImageDataFieldBlob {
       bool get();
    }
    Remarks
    Defaults to true.
    See Also