操作blob到ORACLE,当数量大时,非常慢,请问如何解决
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了操作blob到ORACLE,当数量大时,非常慢,请问如何解决相关的知识,希望对你有一定的参考价值。
参考技术A 确定一下dgv_Data是否为当前画面的对象,而不是父画面的对象。 你提示的错误是执行代码时由Catch截获的还是你在监视窗口里查看this.dgv_Data.Rows[i].Cells[0].Value.ToString()这句的值得时候看到的?如果是监视窗口里看到的,有可能不是错误,将 blob 从 JS 保存到 Oracle SQL?
【中文标题】将 blob 从 JS 保存到 Oracle SQL?【英文标题】:Saving a blob from JS to Oracle SQL? 【发布时间】:2020-06-30 11:22:27 【问题描述】:我目前正在尝试通过笔记本电脑的网络摄像头拍照并将其保存到 Oracle Apex 数据库。
为了捕捉用户照片,我使用简单的 JS 代码(见下文)。如何将我的图像保存到数据库?我认为将图像转换为 Blob 是最简单的想法,但转换后我被卡住了……我可以用我的 Blob 设置“仅显示”或“上传文件”项吗?
非常感谢您的帮助!
<html>
Videoplayer will follow here
<video id="player" autoplay></video>
<button type="button" id="capture">Capture</button>
<canvas id="canvas" class="canvasclass"></canvas>
<button type="button" id="save">Save Photo</button>
<div id="urldiv">URL here</div>
<script>
const player = document.getElementById('player');
const canvas = document.getElementById('canvas');
const context = canvas.getContext('2d');
const captureButton = document.getElementById('capture');
const savebutton = document.getElementById('save');
const urlplace = document.getElementById('urldiv');
const constraints =
audio:false,video:true
;
captureButton.addEventListener('click', () =>
context.drawImage(player, 0, 0, canvas.width, canvas.height);
// Stop all video streams.
player.srcObject.getVideoTracks().forEach(track => track.stop());
);
navigator.mediaDevices.getUserMedia(constraints)
.then((stream) =>
// Attach the video stream to the video element and autoplay.
player.srcObject = stream;
);
savebutton.addEventListener('click', () =>
const dataurl = canvas.toDataURL();
urlplace.innerHTML = dataurl;
window.prompt("Copy to clipboard: Ctrl+C, Enter", dataurl);
// $s("ITEM_NAME", dataurl);
)
</script>
<html>
【问题讨论】:
我不建议将图像保存到数据库中,这太耗费资源了,最好将图像放在文件系统中并将路径插入到数据库中 不幸的是,此时不是一个选项。肯定是更好的答案 【参考方案1】:This article covers taking a photo and saving it in APEX - 这和你正在做的非常相似。
与您的问题相关的主要部分是您的 JS 'click' 事件侦听器应将图像发送到服务器端 ajax 进程。这里它被命名为“SAVE_PHOTO”:
apex.server.process(
'SAVE_PHOTO',
p_clob_01: canvas.toDataURL().match(/,(.*)$/)[1]
,
success: function(data)
if (data.result == 'success')
apex.submit('SNAP_PHOTO');
);
注意,ajax调用成功后也会提交页面。
您还需要在 Apex 中创建 On-Demand Process SAVE_PHOTO
:
declare
l_photo_clob clob;
l_photo_blob blob;
begin
l_photo_clob := apex_application.g_clob_01;
l_photo_blob := apex_web_service.clobbase642blob(
p_clob => l_photo_clob
);
-- Here, instead of adding the blob to a collection, you could insert it in a table.
-- If so, you probably want to pass more arguments (e.g. primary key) using apex_application.G_X01 , g_x02, etc
apex_collection.add_member(
p_collection_name => 'PHOTOS',
p_blob001 => l_photo_blob
);
apex_json.open_object;
apex_json.write(
p_name => 'result',
p_value => 'success'
);
apex_json.close_object;
exception
when others then
apex_json.open_object;
apex_json.write(
p_name => 'result',
p_value => 'fail'
);
apex_json.close_object;
end;
他们在文章中更详细地介绍了它。
【讨论】:
以上是关于操作blob到ORACLE,当数量大时,非常慢,请问如何解决的主要内容,如果未能解决你的问题,请参考以下文章
当数字非常大时,Javascript“toLocaleString()”函数将小数点归零[重复]
使用 Azure Java SDK V12 和 ListBlobs() 在 Azure Blobstorage 中列出 Blob 非常慢