Hi
I need to store a large file in BLOB column (10MB and more). ODAC demo shows how to upload file using ParamByName('').AsOraBlob.LoadFromFile. Uploading takes time so is there a way to get upload progreaa information during this process? I'd like to show progress bar informing user how many bytes have been already uploaded.
Upload BLOB and progress bar
Re: Upload BLOB and progress bar
Hello,
There is no such functionality.
P.S. After loading with the LoadFromFile method, sending to the server will be a long-time operation on big data.
There is no such functionality.
P.S. After loading with the LoadFromFile method, sending to the server will be a long-time operation on big data.
Re: Upload BLOB and progress bar
Hello,
does it means that there is a chance to get progress information using .LoadFromStream method ?
regards
Alex
does it means that there is a chance to get progress information using .LoadFromStream method ?
regards
Alex
Re: Upload BLOB and progress bar
If you have a Source Edition, we can show you where to add necessary changes to solve the issue.
Re: Upload BLOB and progress bar
We are planning to buy "source edition" license, thank you.
Re: Upload BLOB and progress bar
You can edit the LoadFromStream/SaveToStream method to call the event in a loop, that will display the progress percentage of file loading.