如何使用JSON(大于32k)在ORDS中返回大文本

时间:2019-03-26 17:12:57

标签: plsql oracle-ords

我正在Oracle ORDS中创建Rest API,我需要返回大于32k的base64文本。源类型是PL / SQL。

原始数据在CLOB变量中,但是ORDS不支持这种返回。我尝试使用LONG,但是当字符串大于32k时,无法将其移至LONG。

  • 我试图将内容从CLOB移到LONG,但是没有成功。
  • 我尝试用所需的文本创建两个Long变量,并将其连接到Long变量以输出它,但同样没有成功。
  • 我能够在ResultSet中返回内容,但是它将使Json结构与我所需要的不同。
--This is the variable that has the large text (about 40k characters)
out_hexa        CLOB;

-::boleto是ORDS中的OUT参数(OUT,RESPONSE,LONG)

--This wont work:
:boleto := out_hexa;
--This wont work:
:boleto := substr(out_hexa, 1, 32765) || substr(out_hexa, 32765, LENGTH(out_hexa));

-可行,但是Json输出不是我想要的方式,因为它在Json中创建了第二级 重要提示:在这种情况下,:boleto是一个ResultSet,而不是Long

OPEN :boleto FOR
     SELECT out_hexa as dados from dual;
In this case the output is:
{
    "boleto": [
        {
            "dados": "JVBERi0xLjQKMSAwIG9iago8PAovVGl0bGUgKP7..."
        }
     ]
}


What I need is a Json in this format:
{
    "boleto": "JVBERi0xLjQKMSAwIG9iago8PAovVGl0bGUgKP7..."
}

1 个答案:

答案 0 :(得分:1)

找不到自动执行此操作的方法,因此我自己编写了Json。 我正在分块读取CLOB并使用HTP.prn编写它:

      OWA_UTIL.mime_header('application/json', FALSE);
      OWA_UTIL.http_header_close;         
      htp.prn('{');
      htp.prn('"return_code" : "' ||out_status || '",');
      htp.prn('"return_message" : "' ||out_msg_retorno || '",');
      htp.prn('"boleto" : "');

      IF(out_status = '001') THEN
        :http_status      := 200;                    
        WHILE counter < length(out_hexa)+chunk_size LOOP                     
            htp.prn(substr(out_hexa, counter, chunk_size));
            counter := counter+chunk_size;
        END LOOP;        
      ELSE
        :http_status      := 404;
      END IF;
      htp.prn('"}');