R
Rich S
Working on C#/ASP.Net application in which we are storing secure, private
PDFs, Excel Spreadsheets, Videos, and Images in an Access 2003 database. We
have not yet upgraded the database to SQL Server as it is still in the
development and testing stages.
Unable to utilize administrative webforms that insert BLOBS in excess of
4MB. No problems with any of the documents that are 2MB or less. Objects
range up to 110MB.
Using the following code to read file:
Stream ms = filSource.PostedFile.InputStream;
BinaryReader br = new BinaryReader(ms);
byte[] byteArray = br.ReadBytes((int)filSource.PostedFile.ContentLength);
br.Close();
Object is inserted into the database as a parameter,
OleDbType.LongVarBinary.
Docs indicate that the max field size is 1GB so should work. Any ideas?
PDFs, Excel Spreadsheets, Videos, and Images in an Access 2003 database. We
have not yet upgraded the database to SQL Server as it is still in the
development and testing stages.
Unable to utilize administrative webforms that insert BLOBS in excess of
4MB. No problems with any of the documents that are 2MB or less. Objects
range up to 110MB.
Using the following code to read file:
Stream ms = filSource.PostedFile.InputStream;
BinaryReader br = new BinaryReader(ms);
byte[] byteArray = br.ReadBytes((int)filSource.PostedFile.ContentLength);
br.Close();
Object is inserted into the database as a parameter,
OleDbType.LongVarBinary.
Docs indicate that the max field size is 1GB so should work. Any ideas?