General tips for integration with Oracle Forms?
Keep in mind that the mapping of String objects in Oracle Forms is to Varchar2- it does not allow transfers with beans greater than 4096 chars. That’s why we have provided to our Oracle customers the following methods as a workaround in order to retrieve or set the content in smaller chunks. You may use this approach for handling of content with unlimited length and adapt the following java code for use in OracleForms as demonstrated with the examples for invoking methods above. Insert operations public void openContentBuffer() public void appendContentToContentBuffer(String content) public void closeBufferAndInsert() Retrieve operations public int getBodyContentLenght() for bodyContent only public int getContentLenght() for entire content public String getBodyContentPortion(int offset, int length) for bodyContent only public String getContentPortion(int offset, int length) for entire content Sample code: Here we insert some content: ————————————– htmlEditor.op