开发者

Writing bold text with UTL_FILE package

开发者 https://www.devze.com 2023-03-08 19:11 出处:网络
Could anyone please share how to write开发者_运维知识库 bold text to a .dat file using something similar to the below or otherwise in PL/SQL?

Could anyone please share how to write开发者_运维知识库 bold text to a .dat file using something similar to the below or otherwise in PL/SQL?

UTL_FILE.PUT_LINE(FPOINTER,'i want this in bold');


I think I maybe wrong but you can't do text with styles with UTL_FILE. .dat usually is used for information only, and its representation (like bold texts) is not part of it.

However you can save file as HTML and put lines like '<b>'|| 'my text here' || '</b>'

0

精彩评论

暂无评论...
验证码 换一张
取 消