3 Star 0 Fork 0

mirrors_ReneNyffenegger/PL-SQL-pkg-blob_wrapper

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
spec.plsql 1.45 KB
一键复制 编辑 原始数据 按行查看 历史
create or replace package blob_wrapper as
/*
Package blob_wrapper (spec.plsql and body.plsql)
Copyright (C) René Nyffenegger
This source code is provided 'as-is', without any express or implied
warranty. In no event will the author be held liable for any damages
arising from the use of this software.
Permission is granted to anyone to use this software for any purpose,
including commercial applications, and to alter it and redistribute it
freely, subject to the following restrictions:
1. The origin of this source code must not be misrepresented; you must not
claim that you wrote the original source code. If you use this source code
in a product, an acknowledgment in the product documentation would be
appreciated but is not required.
2. Altered source versions must be plainly marked as such, and must not be
misrepresented as being the original source code.
3. This notice may not be removed or altered from any source distribution.
René Nyffenegger rene.nyffenegger@adp-gmbh.ch
*/
procedure to_file(dir in varchar2, file in varchar2, lob in blob);
procedure to_file(filepath in varchar2 , lob in blob);
function from_file(dir in varchar2, file in varchar2) return blob;
procedure from_file(dir in varchar2, file in varchar2, b in out blob);
function substr(b in blob, length_ in number, start_ in number, chunk_size in number := 30000) return blob;
end blob_wrapper;
/
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_ReneNyffenegger/PL-SQL-pkg-blob_wrapper.git
git@gitee.com:mirrors_ReneNyffenegger/PL-SQL-pkg-blob_wrapper.git
mirrors_ReneNyffenegger
PL-SQL-pkg-blob_wrapper
PL-SQL-pkg-blob_wrapper
master

搜索帮助