sql 将Oracle APEX团队开发加载到Bitbucket问题中
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sql 将Oracle APEX团队开发加载到Bitbucket问题中相关的知识,希望对你有一定的参考价值。
declare
l_clob clob;
l_body clob;
begin
for r in (select feature_name as title, '*'||focus_area||'*' ||feature_description || ' ' || publishable_description || '' as description
from apex_team_features
where nvl(feature_status,0) < 100 and nvl(focus_area,'A') <> 'ON HOLD')
-- change where to what you need
loop
apex_json.initialize_clob_output;
apex_json.open_object;
apex_json.write(p_name => 'title', p_value => r.title);
apex_json.open_object(p_name => 'content');
apex_json.write(p_name => 'raw', p_value => r.description);
apex_json.close_object;
apex_json.close_object;
l_body := apex_json.get_clob_output;
apex_json.free_output;
apex_web_service.g_request_headers(1).name := 'Content-Type';
apex_web_service.g_request_headers(1).value := 'application/json';
l_clob := apex_web_service.make_rest_request(
p_url => 'https://api.bitbucket.org/2.0/repositories/owner/repo/issues',
p_http_method => 'POST',
p_username => 'xxx',
p_password => 'xxx',
p_body => l_body);
end loop;
end;
以上是关于sql 将Oracle APEX团队开发加载到Bitbucket问题中的主要内容,如果未能解决你的问题,请参考以下文章
Oracle Apex 加载没有插件的 excel 数据 .xlsm
如何在没有 Web 源模块的情况下从 Oracle APEX 中的 API 获取数据
Oracle APEX:文件未加载到 apex_application_temp_files
在 Oracle APEX PL/SQL 中传递变量
PL/SQL 中的问题 = 错误堆栈:ORA-01403:Oracle Application Express (APEX) 中没有数据
SQL Plus 和 www.apex.oracle.com