Hi everybody

Can anybody tell me, how I can close a file after written data to it, like in this little example down below?

   FilenameSave                   filename = "d:\\temp\\comma.csv";
   AsciIIO                             export = new AsciIIO(filename,"W");
   ;

   while select * from CUT
       order by AccountNum, Name

   {
       export.write(CUT.AccountNum + '@' + CUT.Name);
   }

Best regards

Mikael Dalgård


Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.

Reply via email to