Focal Point Banner


As of December 1, 2020, Focal Point is retired and repurposed as a reference repository. We value the wealth of knowledge that's been shared here over the years. You'll continue to have access to this treasure trove of knowledge, for search purposes only.

Join the TIBCO Community
TIBCO Community is a collaborative space for users to share knowledge and support one another in making the best use of TIBCO products and services. There are several TIBCO WebFOCUS resources in the community.

  • From the Home page, select Predict: WebFOCUS to view articles, questions, and trending articles.
  • Select Products from the top navigation bar, scroll, and then select the TIBCO WebFOCUS product page to view product overview, articles, and discussions.
  • Request access to the private WebFOCUS User Group (login required) to network with fellow members.

Former myibi community members should have received an email on 8/3/22 to activate their user accounts to join the community. Check your Spam folder for the email. Please get in touch with us at community@tibco.com for further assistance. Reference the community FAQ to learn more about the community.


Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Replacing special characters from DB with HTML entities

Read-Only Read-Only Topic
Go
Search
Notify
Tools
[CLOSED] Replacing special characters from DB with HTML entities
 Login/Join
 
Virtuoso
posted
We have some database data (Oracle 11g) that contains special characters, such as δ.
WF prints them as upside-down question marks.

Due to encoding mismatches between servers, clients and browsers, I am trying to replace those characters with their respective HTML entities. That is only a partial solution to begin with as this report also outputs as PDF, which prints HTML entities like δ verbatim!

Our WF setup is a mish-mash of Win-1252 and Cp 437 encoding to be compatible with our remote servers on AS/400 and OpenVMS respectively. Aside from that, we have some fields with long strings (A2000V) which, AFAIK, would be severly limited in size if we were to switch to UTF-8 in WF. Hence I am under the impression our encodings should stay as they are.

Initially I tried a plain character replacement, which turned up fun things like Dev Studio storing a 'δ'-character as a plain 'd'-character and thus replacing all d's in the strings with a δ entity - Doh!

Then it turned out that if I fixed the character that Dev Studio stored, it was (apparently) sending the wrong string to Oracle (I bet in the wrong encoding) as no replacement was taking place.

It turns out that I have to send the UTF-8 character as a (hexadecimal) byte-string and convert it back to a character on the Oracle side to even get the correct character as a parameter into the replace function...

Currently, I have a workaround using SQL passthru (which I was using for this query anyway) that goes like this:
SQL SQLORA PREPARE SQLOUT FOR
SELECT
-* For some reason, lowercase delta does not get escaped
	replace(
		trim(description),
-* (X)	'δ',
-* (X)	unistr(hextoraw('CEB4')),
		utl_raw.cast_to_varchar2(hextoraw('CEB4')),
		'&'||'delta;'
	) AS p_description
FROM table;
END


As you can see, all that is to replace just one special character with its HTML entity counterpart. Not very generic, for every additional replacement I need to wrap the above in another replacement. Bah!

Now that's just the start. Returning a HTML entity as a replacement is a fairly simple thing to do, but obviously that breaks in PDF output. I don't have a solution for that yet.

I'm under the impression that this ought to be simpler. Am I missing something obvious?

This message has been edited. Last edited by: <Kathryn Henning>,


WebFOCUS 8.1.03, Windows 7-64/2008-64, IBM DB2/400, Oracle 11g & RDB, MS SQL-Server 2005, SAP, PostgreSQL 11, Output: HTML, PDF, Excel 2010
: Member of User Group Benelux :
 
Posts: 1669 | Location: Enschede, Netherlands | Registered: August 12, 2010Report This Post
Master
posted Hide Post
Wep,

did you consider making view with in the DBMS. Perhaps even two. An view for HTML-output and view for PDF-output.

Let SQL replace those pesky characters... ( they're all Greek to me anyway ).

Good luck,
Dave


_____________________
WF: 8.0.0.9 > going 8.2.0.5
 
Posts: 668 | Location: Veghel, The Netherlands | Registered: February 16, 2010Report This Post
  Powered by Social Strata  

Read-Only Read-Only Topic

Focal Point    Focal Point Forums  Hop To Forum Categories  WebFOCUS/FOCUS Forum on Focal Point     [CLOSED] Replacing special characters from DB with HTML entities

Copyright © 1996-2020 Information Builders