NeatUpload Documentation

SqlServerUploadStorageProvider Properties

The properties of the SqlServerUploadStorageProvider class are listed below. For a complete list of SqlServerUploadStorageProvider class members, see the SqlServerUploadStorageProvider Members topic.

Public Instance Properties

CleanupProcedure Name of procedure to call when the file upload is completed but before the .net web page loads. This procedure can be used to clear the "partial upload" flag if one was used.
ConnectionName Name of connection string to use when connecting to the database (from then <connectionStrings> section in web.config)
ConnectionString Connection string to use when connecting to the database
CreateProcedure Name of procedure to call to create a new file in the database. To create new blobs either this or TableName/DataColumnName must be available
DataColumnName Name of table column to store data into. Should be of type 'Image'. This or CreatorProcedure must be specified
DeleteProcedure Name of procedure to call to delete a file from the database. Either this or TableName must be available to allow deletion of files
DescriptionDescription of this storage provider
FileNameColumnName Optional Name of table column where the name of the uploaded file will be stored
HashAlgorithm Optional Name of hash algorithm to use if we should hash while upload
HashColumnName Optional Name of table column where the hash of the uploaded file will be stored
MIMETypeColumnName Optional Name of table column where the MIME-type of the uploaded file will be stored
Name Unique friendly name for this provider
OpenProcedure Name of procedure to call to open an existing blob in the database. To read/append data either this or TableName/DataColumnName must be available
PartialFlagColumnName Optional Name of table column to store a "partial"-flag in; while uploading this will be set to 1, when done it will be set to 0
ReadProcedure Name of procedure to call to read data from the database. Either this or TableName/DataColumnName must be available
RenameProcedure Name of procedure to call to change the name of the file in the database. Either this or TableName/FileNameColumnName must be available
StoreHashProcedure Name of procedure to call when the file upload is completed and verified to stay in the database (i.e. MoveTo has been called). This procedure can be used to store the Hash of the file if one was calculated
TableName Table to store incoming file into. This or CreatorProcedure must be specified
WriteProcedure Name of procedure to call to append data in the database. Either this or TableName/DataColumnName must be available

See Also

SqlServerUploadStorageProvider Class | Hitone.Web.SqlServerUploader Namespace