Open GoogleCodeExporter opened 8 years ago
One more thing:
In GetStringWidth add 3 lines of code after the "begin":
if pstr is null then
return 0;
end if;
So that it looks like this:
function GetStringWidth(pstr varchar2) return number is
charSetWidth CharSet;
w number;
lg number;
wdth number;
c car;
begin
if pstr is null then
return 0;
end if;
.... ... ... keep rest of function as is....
Original comment by brian%da...@gtempaccount.com
on 1 Sep 2011 at 4:59
Will try to incorporate these changes in the next release.
Original comment by thehunge...@gmail.com
on 19 Oct 2011 at 5:31
Your changes don't compile, unless I'm leaving something out. Did you change
the declaration of pdfDoc from the tclob type?
Original comment by mike...@gmail.com
on 8 Jan 2012 at 7:20
Original issue reported on code.google.com by
brian%da...@gtempaccount.com
on 1 Sep 2011 at 4:28