Axaptapedia is now maintained by AgileCadence For more information please click here.

CommaTextIo

From Axaptapedia
Jump to: navigation, search

The CommaTextIO class can be used to read and write CSV files.

Write CSV[edit]

<xpp>

  1. File

CommaTextIo commaTextIo; FileIOPermission permission; CustTable custTable; str fileName = @"C:\test.csv";

permission = new FileIOPermission(fileName,#io_write); permission.assert();

commaTextIo = new CommaTextIo(fileName,#io_write); while select custTable {

   commaTextIo.write(custTable.AccountNum,custTable.Name);

}

CodeAccessPermission::revertAssert(); </xpp>