java如何上传oracle数据库中的对象
我想使用 java 将多个对象上传到我的 Oracle 数据库。
我的对象包括 { DOC, DOCX , PPT , PPTX , PDF } 文件。
如何将我的对象上传到 Oracle 数据库中并从数据库中检索它。
我也有兴趣了解更多关于“如何从 Java 批量插入 Oracle 数据库中的对象列表?”但我认为这个问题之前已经回答过。如果您有任何新的或有趣的资源,请与我分享...
I want to upload multiple objects to my oracle database using java.
My objects included { DOC, DOCX , PPT , PPTX , PDF } files.
How I can upload my objects in oracle database and retrieve it from database.
also I am interested to know more about "How can I batch insert list of objects in Oracle database from Java?" but I think this question answered before. If you have any new or interesting resource please share with me please ...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
插入数据库:
从数据库读取:
Insert into db:
Read from db:
如果您
则可以像常规网络文件系统一样访问该文件系统。这样做是使用常规文件系统 io 在数据库中存储非结构化数据的最简单方法。 dbfs_client 使用熔断器转换调用。如果需要,您可以稍后创建与其他数据的关系。
罗纳德.
If you are
you can access the filesystem as a regular networked filesystem. Doing so is the easiest way to store non structured data in the database using regular filesystem io. The dbfs_client translated the calls using fuse. If needed you can create the relations to other data later.
Ronald.