Below is the example to write file on client in Oracle Forms 10g with webutil library package.

Note:  Webutil library must be attached to the form.

DECLARE
v_dir VARCHAR2(250) := 'c:\temp';
ft_tempfile CLIENT_TEXT_IO.FILE_TYPE;
begin
ft_tempfile := CLIENT_TEXT_IO.FOPEN(v_dir ||'\tempfile.txt','w');
CLIENT_TEXT_IO.PUT_LINE(ft_tempfile,'First line....');
CLIENT_TEXT_IO.PUT_LINE(ft_tempfile,'Second line....');
CLIENT_TEXT_IO.PUT_LINE(ft_tempfile,'Third line....');
CLIENT_TEXT_IO.FCLOSE(ft_tempfile);
END;



Writing Text Files On The Client in Oracle Forms 10g


Writing Text Files in Oracle Forms 10g

Reviewed by Nisha Vats on

Mar 01

Rating: 
4.5

相关文章:

  • 2021-05-21
  • 2021-07-15
  • 2022-01-11
  • 2021-08-27
  • 2021-10-07
  • 2021-06-28
  • 2021-09-24
  • 2022-01-20
猜你喜欢
  • 2022-01-18
  • 2021-12-22
  • 2021-08-22
  • 2021-12-04
  • 2021-07-16
  • 2021-05-30
  • 2021-10-10
相关资源
相似解决方案