How to store the form data in Excel sheet in form 6i?

Showing Answers 1 - 3 of 3 Answers

anil

  • Nov 7th, 2006
 

yes by using  "Text_io" package

for example:

declare
 x text_io.file_type;
begin
 x:=Text_IO.Fopen('c:bonus.csv', 'w');                                                     for rec in(select * from emp) loop
 Text_io.put_line(x,rec.period_name||','||rec.col1||','||rec.col2||','||rec.col3);
 end loop;
 Text_IO.Fclose(x);
end;

  Was this answer useful?  Yes

anilpj2

  • Nov 7th, 2006
 

by using "TEXT_IO" package

for example:

decalre

  Was this answer useful?  Yes

summa

  • Feb 6th, 2007
 

Using Text_IO package the form data will store in Excel sheet

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions