G
Guest
I'm using oledb to insert an uploaded file to access database, for small
files it's pretty fast, but if you go to like a 10 megs file it'll take a
minute, and seems to be quite consistent all the way up to 100megs taking 10
minutes.
I'm doing
cmd.Parameters.Add("@ImgBinary", OleDbType.VarBinary).Value =
saveStream.ToArray();
then executenonquery.
I'm using ASP.NET 2.0, I think it used to be faster for 1.1....but not 100%
sure.
it takes forever, someone help.
files it's pretty fast, but if you go to like a 10 megs file it'll take a
minute, and seems to be quite consistent all the way up to 100megs taking 10
minutes.
I'm doing
cmd.Parameters.Add("@ImgBinary", OleDbType.VarBinary).Value =
saveStream.ToArray();
then executenonquery.
I'm using ASP.NET 2.0, I think it used to be faster for 1.1....but not 100%
sure.
it takes forever, someone help.