简体   繁体   中英

Writing bold text with UTL_FILE package

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>''<b>'|| 'my text here' || '</b>'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM