如何使用 ASP.Net 将文档或 PDF 文件插入 Oracle 数据库
我的数据库上有一个 CLOB
数据类型,我的 ASP.Net 上有一个 FileUpload
按钮。所以我的问题是如何使用 ASP.Net 将 Word 文档或 PDF 文件插入到我的 Oracle 数据库中?
有人知道该怎么做吗?我是初学者。请耐心等待:)
I have a CLOB
data type on my database and a FileUpload
button on my ASP.Net. So my question is how can I insert a word document or PDF file into my Oracle database using ASP.Net?
Anyone knows how to do this? I'm a beginner. Please bear with me :)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您最好将问题分成两部分(用于处理文件上传,用于 BLOB I/O),然后再次发布以获得更详细的答案。
或者,您可以使用以下关键字搜索 SO:FileUpload、BLOB、Oracle(标记 .net)
以下是我关于 Oracle 提供商的 ASP.NET BLOB 读/写的 Google 搜索结果:
使用 C#.Net 在 Oracle 数据库中的 Blob 字段中插入/检索图像
使用 System.Data.OracleClient 写入 Oracle CLOB 字段
You'd better separate the question in two parts (for handling file upload, for BLOB I/O) and post again to get more detail answers.
Or, you can search SO with these keywords: FileUpload, BLOB, Oracle (tag .net)
Below are my Google search result about ASP.NET BLOB read/write for Oracle provider:
Insert /retrieve an image into/ from a blob field in Oracle database using C#.Net
Writing to Oracle CLOB fields using System.Data.OracleClient
UTFG!在 Google 中搜索“oracle ado.net clob”并查看此 MSDN 页面 。
UTFG! Search "oracle ado.net clob" in Google and check this MSDN page.