7,713 questions
0
votes
0
answers
17
views
Is there an JS method of storing data for more expansive than 5MB (LocalStorage)?
Stack Overflow! This is my first question around here, and i'll be thankful to know one thing:
If there is an JavaScript method (library, framework) for storing data (.xml, local data, etc..) for more ...
-5
votes
0
answers
35
views
Issue with Preserving Formatting (Images & Tables) When Downloading Manipulated Document in React [closed]
I'm working on a project that involves document manipulation using AI. The frontend is built with React.js, and the backend is built with Django.
Here's the workflow I'm trying to implement:
A user ...
0
votes
1
answer
36
views
DefaultAzureCredential() causing SyntaxError: Identifier '__dirname' has already been declared
I am trying to connect to my meteor application with Azure to use blob storage following this tutorial: https://learn.microsoft.com/en-us/azure/storage/blobs/storage-blob-javascript-get-started?tabs=...
0
votes
1
answer
39
views
Upload an image into a column with Blob data type on Oracle SQL
I have this table (Image_uploads) with the following columns and data types:
NAME -VARCHAR2(256 BYTE),
MIME_TYPE -VARCHAR2(128 BYTE),
DOC_SIZE -NUMBER,
DAD_CHARSET -VARCHAR2(128 BYTE),
LAST_UPDATED -...
1
vote
2
answers
45
views
Pass BLOB to stored procedure from SQL*Plus
How to call a stored procedure from SQL*Plus with blob input parameters?
Below a sample of the SP to be called:
procedure p_dummy_proc (sessionId varchar2, accountId integer, lobData blob, oId out ...
0
votes
0
answers
62
views
Google Export method not getting the file downloaded in the requested mimetype format for Google Workspace documents
I'm using the Google Drive API (Google.Apis.Drive.v3) to export Google Workspace files (Docs, Sheets, etc.) into specific MIME types using the Files.Export method. However, the downloaded file does ...
0
votes
0
answers
54
views
How to Resize a GIF While Preserving Animation in React (Client-Side Only)
I am working on a React project where I need to crop, rotate, zoom, and resize images, including animated GIFs.
I am using react-easy-crop for cropping and the Canvas API to generate the final output. ...
0
votes
1
answer
37
views
Is there a way to create Snowpipe or Ingestion in Snowflake for a public Azure Blob dataset?
I have done Snowpipe before for a azure Blob before, but since it was private I had access to tenant_id and all authentications. Maybe the question seems backward but when a storage is public, Can we ...
0
votes
0
answers
43
views
Oracle Error Converting Base64 Clob to Blob [duplicate]
I am trying to attach a pdf file to an invoice. The pdf comes to me as a base64 value that I store in a table as a clob. I then try to convert the base64 clob to a blob.
DECLARE
l_base64_clob CLOB;
...
1
vote
1
answer
97
views
Azure Blob Storage - This request is not authorized to perform this operation
I've been building an ASP.NET Core Web API that calls Azure Blob Storage to upload and download a file.
Code is very simple so far:
BlobContainerClient containerClient = await _blobServiceClient....
0
votes
1
answer
71
views
How to get long type value stored in a blob type column using DBMS_LOB in Oracle
I have a BLOB column in one of the tables and it basically stores the following format data in BLOB format
[
{
INVOICE_ID => 503457986,
},
{ }
]
Now I'm trying to fetch ...
0
votes
0
answers
21
views
pdf lose image when using window.URL and view via PDFJS
I read a pdf file from computer then convert to base64, then using window.URL to create a url and view it via PDFJS, but some images on the pdf file were lost, this is my code:
const fileReader = new ...
0
votes
0
answers
37
views
unexpected end of archive error when trying to open a Zip file downloaded via javascript
I'm trying to download a ZIP file from a backend API that returns the ZIP binary as a string.
If I do this:
curl --location 'https://backend-endpoint.com/get-file' >> test.zip it creates a ZIP ...
0
votes
2
answers
253
views
Oracle APEX 24.2- Using an INSERT Process to place images into a BLOB column(s) and NOT A FORM
I am trying to upload an image into APEX (Version 24.2) and store it in a BLOB column (Product_Image) in the PRODUCTS table.
I also have the MIME type, filename, and last updated columns properly set ...
0
votes
1
answer
113
views
Efficient and Secure Handling of Large ZIP Streams in Azure Blob Storage
I need to upload a stream from the browser's network. The current approach involves uploading the stream for processing, and only if it's valid, it proceeds with the regular flow. Since the stream can ...